AFS_FileAttributes Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:AFS_FileAttributes Enumeration}} | {{#customTitle:AFS_FileAttributes Enumeration}} | ||
− | {{#parentPage:PXV:AFS_Enumerations|AFS_FileAttributes | + | {{#parentPage:PXV:AFS_Enumerations|AFS_FileAttributes|enum}} |
− | + | ||
Specifies the file attributes. | Specifies the file attributes. | ||
Line 10: | Line 9: | ||
<pre class="brush:cpp;gutter:false">enum AFS_FileAttributes | <pre class="brush:cpp;gutter:false">enum AFS_FileAttributes | ||
{ | { | ||
− | AFS_FileAttribute_Folder | + | AFS_FileAttribute_Folder = 1048576, |
− | AFS_FileAttribute_ReadOnly | + | AFS_FileAttribute_ReadOnly = 2097152, |
− | AFS_FileAttribute_Hidden | + | AFS_FileAttribute_Hidden = 4194304, |
− | AFS_FileAttribute_System | + | AFS_FileAttribute_System = 8388608, |
− | AFS_FileAttribute_Archive | + | AFS_FileAttribute_Archive = 16777216, |
− | AFS_FileAttribute_Temporary | + | AFS_FileAttribute_Temporary = 33554432, |
− | AFS_FileAttribute_Virtual | + | AFS_FileAttribute_Virtual = 67108864, |
− | + | ||
}; | }; | ||
</pre> | </pre> | ||
Line 36: | Line 34: | ||
;AFS_FileAttribute_Virtual | ;AFS_FileAttribute_Virtual | ||
:File is virtual. | :File is virtual. | ||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 23:21, 11 August 2015
Specifies the file attributes.
Syntax
enum AFS_FileAttributes { AFS_FileAttribute_Folder = 1048576, AFS_FileAttribute_ReadOnly = 2097152, AFS_FileAttribute_Hidden = 4194304, AFS_FileAttribute_System = 8388608, AFS_FileAttribute_Archive = 16777216, AFS_FileAttribute_Temporary = 33554432, AFS_FileAttribute_Virtual = 67108864, };
Constants
- AFS_FileAttribute_Folder
- File is folder.
- AFS_FileAttribute_ReadOnly
- File is read-only.
- AFS_FileAttribute_Hidden
- File is hidden.
- AFS_FileAttribute_System
- File is system.
- AFS_FileAttribute_Archive
- File is archive.
- AFS_FileAttribute_Temporary
- File is temporary.
- AFS_FileAttribute_Virtual
- File is virtual.