System.SysUtils.TFileSystemAttribute
Delphi
TFileSystemAttribute = (fsCaseSensitive, fsCasePreserving, fsLocal,
fsNetwork, fsRemovable, fsSymLink);
C++
enum DECLSPEC_DENUM TFileSystemAttribute : unsigned char { fsCaseSensitive, fsCasePreserving, fsLocal, fsNetwork, fsRemovable, fsSymLink };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Enumerates the attributes specific to a file system.
The following table describes the values of the TFileSystemAttribute enumeration:
Attribute | Description |
---|---|
fsCaseSensitive | The file system is case-sensitive. |
fsCasePreserving | The file system is case-preserving, but not necessarily case-sensitive. |
fsLocal | Local drive. |
fsNetwork | Network drive. |
fsRemovable | Removable drive (USB drive, CD-ROM, or mounted volume). |
fsSymLink | The file system supports symbolic links. |
Use the FileSystemAttributes function to get the attributes for a specific path.
See Also
- TFileSystemAttributes (a set of TFileSystemAttribute)