[This is preliminary documentation and is subject to change.]
Standars subset of file attributes
Namespace: Tools.TotalCommanderTAssembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[FlagsAttribute] public enum StandardFileAttributes |
| Visual Basic |
|---|
<FlagsAttribute> _ Public Enumeration StandardFileAttributes |
| Visual C++ |
|---|
[FlagsAttribute] public enum class StandardFileAttributes |
| F# |
|---|
[<FlagsAttribute>] type StandardFileAttributes |
| JScript |
|---|
public enum StandardFileAttributes |
Members
| Member name | Value | Description | |
|---|---|---|---|
| System | 4 | The file or directory is part of the operating system, or the operating system uses the file or directory exclusively. | |
| Archive | 32 | The file or directory is an archive file or directory. Applications use this attribute to mark files for backup or removal. | |
| Hidden | 2 | The file or directory is hidden. It is not included in an ordinary directory listing. | |
| ReadOnly | 1 | The file or directory is read-only. For a file, applications can read the file, but cannot write to it or delete it. For a directory, applications cannot delete it. | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets value idicating if given value is defined as constant in enumeration |