Installer.FileAttributes 属性
Installer 对象的 FileAttributes 属性返回一个数字,该数字表示文件或文件夹的指定路径的组合文件属性。
此属性为只读。
语法
propVal = Installer.FileAttributes
属性值
(必需)文件或文件夹的路径。 如果提供了不完整的路径,则假设为当前目录
备注
FileAttributes 属性会返回以下值。
文件属性 | 值 | 值 |
---|---|---|
FILE_ATTRIBUTE_READONLY | 0x00000001 | 1 |
FILE_ATTRIBUTE_HIDDEN | 0x00000002 | 2 |
FILE_ATTRIBUTE_SYSTEM | 0x00000004 | 4 |
FILE_ATTRIBUTE_DIRECTORY | 0x00000010 | 16 |
FILE_ATTRIBUTE_TEMPORARY | 0x00000100 | 256 |
FILE_ATTRIBUTE_COMPRESSED | 0x00000800 | 2048 |
FILE_ATTRIBUTE_OFFLINE | 0x00001000 | 4096 |
如果文件或文件夹不存在或不可访问,则返回 –1。
要求
要求 | 值 |
---|---|
版本 |
Windows Server 2012、Windows 8、Windows Server 2008 R2 或 Windows 7 上的 Windows Installer 5.0。 Windows Server 2008 或 Windows Vista 上的 Windows Installer 4.0 或 Windows Installer 4.5。 Windows Server 2003 或 Windows XP 上的 Windows Installer |
Header |
|
DLL |
|
IID |
IID_IInstaller 定义为 000C1090-0000-0000-C000-000000000046 |