read Attributes
Reads a file's attributes of the specified type A in bulk.
Since Kotlin
1.5See also
Parameters
A
the reified type of the desired attributes, a subtype of BasicFileAttributes.
Throws
Unsupported Operation Exception
if the given attributes type A is not supported.
Reads the specified list of attributes of a file in bulk.
The list of attributes to read is specified in the following string form:
[view:]attribute_name1[,attribute_name2...]
Content copied to clipboard
So the names are comma-separated and optionally prefixed by the attribute view type name, basic
by default. The special *
attribute name can be used to read all attributes of the specified view.
Since Kotlin
1.5Return
a Map having an entry for an each attribute read, where the key is the attribute name and the value is the attribute value.
See also
Throws
Unsupported Operation Exception
if the attribute view is not supported.
Illegal Argument Exception
if no attributes are specified or an unrecognized attribute is specified.