Configurable File Permissions
Provides the means of specifying file and directory access permissions for all classes of system users.
For details on classes of users and file/directory permissions see FilePermissions.
An example usage of this functionality would be configuring a copy task and explicitly specifying the destination file permissions:
from(...)
into(...)
filePermissions {
user {
read = true
execute = true
}
other.execute = false
}
Content copied to clipboard
Since
8.3
Functions
Link copied to clipboard
Returns the permissions a user, who is a member of the group that the file/directory belongs to, has for the file/directory.
Link copied to clipboard
Returns the permissions all other users (non-owner, non-group) have for the file/directory.
Link copied to clipboard
Returns the permissions the owner of the file has for the file/directory.
Link copied to clipboard
Modifies the permissions a user, who is a member of the group that the file/directory belongs to, has for the file/directory.
Link copied to clipboard
Modifies the permissions all other users (non-owner, non-group) have for the file/directory.
Link copied to clipboard
Link copied to clipboard
Modifies the permissions the owner of the file has for the file/directory.