Constants.vbArchive Field

Definition

Indicates that the file has changed since the last backup operation for file-access functions.

public: Microsoft::VisualBasic::FileAttribute vbArchive = 32;
public const Microsoft.VisualBasic.FileAttribute vbArchive = 32;
val mutable vbArchive : Microsoft.VisualBasic.FileAttribute
Public Const vbArchive As FileAttribute  = 32

Field Value

Value = 32

Remarks

When you call the Dir, GetAttr, or SetAttr functions, you can use the FileAttribute enumeration in your code in place of the actual values.

The Attributes argument takes the FileAttribute enumeration members.

When performing file I/O operations, the My.Computer.FileSystem object provides greater performance and ease of use than legacy file I/O methods. For more information, see FileSystem object.

Applies to

See also