System.IOUtils.TPath.VolumeSeparatorChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class property VolumeSeparatorChar: Char read FVolumeSeparatorChar;

C++

/* static */ __property System::WideChar VolumeSeparatorChar = {read=FVolumeSeparatorChar};

Properties

Type Visibility Source Unit Parent
property public
System.IOUtils.pas
System.IOUtils.hpp
System.IOUtils TPath

Description

Specifies the character used to separate the drive letter from the rest of the path.

Use the value of the VolumeSeparatorChar property in routines that require manipulation of Windows paths. In Windows operating systems, an absolute path consists in a drive letter, separated by the VolumeSeparatorChar character from the rest of the path.

Note: On the POSIX platform, VolumeSeparatorChar always returns #0 (null char), since POSIX has no volumes.

See Also