Specifies the access permissions for a file on the server.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
| Member Name | Description | Value |
|---|---|---|
| symbolicLink | The file is a symbolic link to another file. Symbolic links are special types of files found on UNIX based systems which are similar to Windows shortcuts. | 4096 |
| ownerRead | The owner has permission to open the file for reading. If the current user is the owner of the file, this grants the user the right to download the file to the local system. | 1024 |
| ownerWrite | The owner has permission to open the file for writing. If the current user is the owner of the file, this grants the user the right to replace the file. If this permission is set for a directory, this grants the user the right to create and delete files. | 512 |
| ownerExecute | The owner has permission to execute the contents of the file. The file is typically either a binary executable, script or batch file. If this permission is set for a directory, this may also grant the user the right to open that directory and search for files in that directory. | 256 |
| groupRead | Users in the specified group have permission to open the file for reading. If the current user is in the same group as the file owner, this grants the user the right to download the file. | 64 |
| groupWrite | Users in the specified group have permission to open the file for writing. On some platforms, this may also imply permission to delete the file. If the current user is in the same group as the file owner, this grants the user the right to replace the file. If this permission is set for a directory, this grants the user the right to create and delete files. | 32 |
| groupExecute | Users in the specified group have permission to execute the contents of the file. If this permission is set for a directory, this may also grant the user the right to open that directory and search for files in that directory. | 16 |
| worldRead | All users have permission to open the file for reading. This permission grants any user the right to download the file to the local system. | 4 |
| worldWrite | All users have permission to open the file for writing. This permission grants any user the right to replace the file. If this permission is set for a directory, this grants any user the right to create and delete files. | 2 |
| worldExecute | All users have permission to execute the contents of the file. If this permission is set for a directory, this may also grant all users the right to open that directory and search for files in that directory. | 1 |
Namespace: SocketTools
Assembly: SocketTools.FileTransfer (in SocketTools.FileTransfer.dll)