Package | Description |
---|---|
nl.esciencecenter.xenon.files |
This package contains classes and interfaces for manipulating files.
|
Modifier and Type | Method and Description |
---|---|
static PosixFilePermission |
PosixFilePermission.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PosixFilePermission[] |
PosixFilePermission.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Set<PosixFilePermission> |
FileAttributes.permissions()
Get the permissions of this file.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
PosixFilePermission.contains(PosixFilePermission toFind,
PosixFilePermission... options)
Check if a sequence of
PosixFilePermission s contains a specific option. |
static boolean |
PosixFilePermission.contains(PosixFilePermission toFind,
PosixFilePermission... options)
Check if a sequence of
PosixFilePermission s contains a specific option. |
Modifier and Type | Method and Description |
---|---|
void |
Files.setPosixFilePermissions(Path path,
Set<PosixFilePermission> permissions)
Sets the POSIX permissions of a path.
|