[This is preliminary documentation and is subject to change.]

Standars subset of file attributes

Namespace: Tools.TotalCommanderT
Assembly: 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 nameValueDescription
System4The file or directory is part of the operating system, or the operating system uses the file or directory exclusively.
Archive32The file or directory is an archive file or directory. Applications use this attribute to mark files for backup or removal.
Hidden2The file or directory is hidden. It is not included in an ordinary directory listing.
ReadOnly1The 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.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also