Advertisement
VoronVU

Attr

Nov 10th, 2014
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.65 KB | None | 0 0
  1.   faInvalid     = -1;
  2.   faReadOnly    = $00000001;
  3.   faHidden      = $00000002 platform; // only a convention on POSIX
  4.   faSysFile     = $00000004 platform; // on POSIX system files are not regular files and not directories
  5.   faVolumeID    = $00000008 platform deprecated;  // not used in Win32
  6.   faDirectory   = $00000010;
  7.   faArchive     = $00000020 platform;
  8.   faNormal      = $00000080;
  9.   faTemporary   = $00000100 platform;
  10.   faSymLink     = $00000400 platform; // Available on POSIX and Vista and above
  11.   faCompressed  = $00000800 platform;
  12.   faEncrypted   = $00004000 platform;
  13.   faVirtual     = $00010000 platform;
  14.   faAnyFile     = $000001FF;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement