AFS_FileAttributes Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
m (Automatic page editing by robot) |
||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:AFS_FileAttributes Enumeration}} | {{#customTitle:AFS_FileAttributes Enumeration}} | ||
− | {{#parentPage:PXV: | + | {{#parentPage:PXV:AFS_Enumerations|AFS_FileAttributes|enum}} |
− | + | ||
− | + | ||
− | Specifies the | + | Specifies the file attributes. |
== Syntax == | == Syntax == | ||
<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 23: | Line 21: | ||
== Constants == | == Constants == | ||
;AFS_FileAttribute_Folder | ;AFS_FileAttribute_Folder | ||
− | : | + | :File is folder. |
;AFS_FileAttribute_ReadOnly | ;AFS_FileAttribute_ReadOnly | ||
− | : | + | :File is read-only. |
;AFS_FileAttribute_Hidden | ;AFS_FileAttribute_Hidden | ||
− | : | + | :File is hidden. |
;AFS_FileAttribute_System | ;AFS_FileAttribute_System | ||
− | : | + | :File is system. |
;AFS_FileAttribute_Archive | ;AFS_FileAttribute_Archive | ||
− | : | + | :File is archive. |
;AFS_FileAttribute_Temporary | ;AFS_FileAttribute_Temporary | ||
− | : | + | :File is temporary. |
;AFS_FileAttribute_Virtual | ;AFS_FileAttribute_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.