Azure.Storage.Files.DataLake.Models.PathPermissions
Represents POSIX-style permissions on a given resource. Each resource specifies permissions for the owner, the owning
group, and everyone else. Permissions for users or groups not included here can be set using an Access Control List.
Manipulating resource permissions is only supported when ADLS interop is enabled.
Whether or not there is more permissions information in the ACLs. The permissions string only returns
information on the owner, owning group, and other, but the ACLs may contain more permissions for specific users
or groups.
The RolePermissions for the owning group of the resource.
The RolePermissions for the other users.
The RolePermissions for the owner of the resource.
If the sticky bit has been set. The sticky bit may be set on directories, the files in that
directory may only be renamed or deleted by the file's owner, the directory's owner, or the root user.
public PathPermissions()
Internal empty constructor.
public PathPermissions(RolePermissions owner, RolePermissions group, RolePermissions other, bool stickyBit = false, bool extendedInfoInAcl = false)
Public constructor.
Parses a string in octal format to PathPermissions.
Parses a symbolic string to PathPermissions.
Returns the octal representation of this PathPermissions as a string.
Returns the symbolic represenation of this PathPermissions as a string.