company logo

FilePermissions - File access permissions

File permissions are a compromise between file permissions supported by Unix systems and Windows. Under Unix, file permissions refer to owner file permissions.

Enumarators overview

Enumerator details

  1. AllowNothing - No access permission at all
    Code: 0
    to list
  2. AllowExecute - Allow executing file
    Code: 1
    to list
  3. AllowWrite - Allow writing file
    Code: 2
    to list
  4. AllowWriteExecute - Allow writing and executing file
    Code: 3
    to list
  5. AllowRead - Allow reading file
    Code: 4
    to list
  6. AllowReadExecute - Allow reading and executing file
    Code: 5
    to list
  7. AllowReadWrite - Allow reading and writing file
    Code: 6
    to list
  8. AllowReadWriteExecute - Allow reading, writing and executing file
    Code: 7
    to list