FileAttribute 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示当调用文件访问函数时要使用的文件特性。
此枚举支持其成员值的按位组合。
public enum class FileAttribute
[System.Flags]
public enum FileAttribute
[<System.Flags>]
type FileAttribute =
Public Enum FileAttribute
- 继承
- 属性
字段
Archive | 32 | 文件自上次备份后已更改。 此成员等效于 Visual Basic 常量 |
Directory | 16 | 目录或文件夹。 此成员等效于 Visual Basic 常量 |
2 | 隐藏。 此成员等效于 Visual Basic 常量 |
|
Normal | 0 | 正常( |
ReadOnly | 1 | 只读。 此成员等效于 Visual Basic 常量 |
System | 4 | 系统文件。 此成员等效于 Visual Basic 常量 |
Volume | 8 | 卷标。 与 |
注解
调用 Dir
、 GetAttr
或 SetAttr
函数时,可以使用 FileAttribute
代码中的 枚举代替实际值。
参数 Attributes
采用 FileAttribute
枚举成员。
执行文件 I/O 操作时,与旧文件 I/O 方法相比, My.Computer.FileSystem
对象提供更高的性能和易用性。 有关详细信息,请参阅 FileSystem。