Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.84 KB | None | 0 0
  1. type
  2.   FilePermission* = enum   ## file access permission; modelled after UNIX
  3.     fpUserExec,            ## execute access for the file owner
  4.     fpUserWrite,           ## write access for the file owner
  5.     fpUserRead,            ## read access for the file owner
  6.     fpGroupExec,           ## execute access for the group
  7.     fpGroupWrite,          ## write access for the group
  8.     fpGroupRead,           ## read access for the group
  9.     fpOthersExec,          ## execute access for others
  10.     fpOthersWrite,         ## write access for others
  11.     fpOthersRead,          ## read access for others
  12.     fpStickyBit            ## file in that directory can be renamed or deleted only by the owner of
  13.                            ## the file, by the owner of the directory, and by a privileged process.
  14.  
  15. {.deprecated: [TFilePermission: FilePermission].}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement