Interface PosixFileAttributes
- All Superinterfaces:
BasicFileAttributes
File attributes associated with files on file systems used by operating systems
that implement the Portable Operating System Interface (POSIX) family of
standards.
The POSIX attributes of a file are retrieved using a PosixFileAttributeView by invoking its readAttributes method.
- Since:
- 1.7
-
Method Summary
Methods declared in interface BasicFileAttributes
creationTime, fileKey, isDirectory, isOther, isRegularFile, isSymbolicLink, lastAccessTime, lastModifiedTime, sizeModifier and TypeMethodDescriptionReturns the creation time.fileKey()Returns an object that uniquely identifies the given file, ornullif a file key is not available.booleanTells whether the file is a directory.booleanisOther()Tells whether the file is something other than a regular file, directory, or symbolic link.booleanTells whether the file is a regular file with opaque content.booleanTells whether the file is a symbolic link.Returns the time of last access.Returns the time of last modification.longsize()Returns the size of the file (in bytes).
-
Method Details
-
owner
-
group
-
permissions
Set<PosixFilePermission> permissions()Returns the permissions of the file. The file permissions are returned as a set ofPosixFilePermissionelements. The returned set is a copy of the file permissions and is modifiable. This allows the result to be modified and passed to thesetPermissionsmethod to update the file's permissions.- Returns:
- the file permissions
- See Also:
-