Web.HTTPApp.DosPathToUnixPath

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DosPathToUnixPath(const Path: string): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall DosPathToUnixPath(const System::UnicodeString Path);

Properties

Type Visibility Source Unit Parent
function public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp Web.HTTPApp

Description

Converts a DOS-compatible path specification to a Unix-compatible path specification.

Use DosPathToUnixPath to convert a path name on the local machine to a path name that can be sent in an HTTP message, or that will be used by a Unix-based application. DosPathToUnixPath converts all backslash characters (\) to forward slashes (/).

The Path parameter is the Dos-compatible path. The return value is the corresponding Unix-compatible path.

See Also