[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.2.0

Syntax

C#
[FlagsAttribute]
public enum StandardFileAttributes
Visual Basic (Declaration)
<FlagsAttribute> _
Public Enumeration StandardFileAttributes
Visual C++
[FlagsAttribute]
public enum class StandardFileAttributes
J#
/** @attribute FlagsAttribute */
public enum StandardFileAttributes
JScript
public enum StandardFileAttributes

Members

Member nameDescription
Archive
The file or directory is an archive file or directory. Applications use this attribute to mark files for backup or removal.
Hidden
The file or directory is hidden. It is not included in an ordinary directory listing.
ReadOnly
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.
System
The file or directory is part of the operating system, or the operating system uses the file or directory exclusively.

See Also