Enum VBFileAttribute
MS-VBAL 6.1.1.8 VbFileAttribute
[Flags]
public enum VBFileAttribute
Fields
VBAlias = 64Specifies file aliases on platforms that support them.
VBArchive = 32Specifies files that have changed since the last backup.
VBDirectory = 16Specifies directories (folders).
VBHidden = 2Specifies hidden files.
VBNormal = 0Specifies files with no attributes.
VBReadOnly = 1Specifies read-only files.
VBSystem = 4Specifies system files.
VBVolume = 8Specifies volume label; if any other attribute is specified,
VBVolumeis ignored.
Remarks
This enum is used to encode the return value of the StdInteraction__GetAttr(VBStringValue) function.
👉 The values of this enum are powers of 2, suggesting they are intended to be combined and used with bitwise logic.