Represents a minimal set of attributes a file. In contrast to
java.nio.file.attribute.BasicFileAttributes
, it is possible to compute the values provided
by this trait without stating the file. If all of the methods return false, the user may infer
that the file to which these attributes corresponds does not exist. An instance of this class
may not represent that current state of the file if the underlying file has been modified since
the instance was first created.
- Companion
- object
Value members
Abstract methods
Returns true if the underlying file is a directory.
Returns true if the underlying file is a directory.
- Returns
true if the underlying file is a directory.
Returns true if the underlying file is not a regular file, directory or symbolic link. The type of this file is thus platform dependent. For example, on linux, it could be a named pipe.
Returns true if the underlying file is not a regular file, directory or symbolic link. The type of this file is thus platform dependent. For example, on linux, it could be a named pipe.
- Returns
true if the underlying file is not a regular file, directory or symbolic link.
Returns true if the underlying file is a regular file.
Returns true if the underlying file is a regular file.
- Returns
true if the underlying file is a regular file.