Table of Contents

Enum VBFileAttribute

Namespace
RDCore.SDK.Runtime.Abstract.StdLib
Assembly
RDCore.SDK.dll

MS-VBAL 6.1.1.8 VbFileAttribute

[Flags]
public enum VBFileAttribute

Fields

VBAlias = 64

Specifies file aliases on platforms that support them.

VBArchive = 32

Specifies files that have changed since the last backup.

VBDirectory = 16

Specifies directories (folders).

VBHidden = 2

Specifies hidden files.

VBNormal = 0

Specifies files with no attributes.

VBReadOnly = 1

Specifies read-only files.

VBSystem = 4

Specifies system files.

VBVolume = 8

Specifies volume label; if any other attribute is specified, VBVolume is 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.