Added in API level 26
    FileAttribute
interface FileAttribute<T : Any!>
| java.nio.file.attribute.FileAttribute | 
An object that encapsulates the value of a file attribute that can be set atomically when creating a new file or directory by invoking the createFile or createDirectory methods.
Summary
| Public methods | |
|---|---|
| abstract String! | name()Returns the attribute name. | 
| abstract T | value()Returns the attribute value. | 
Public methods
name
Added in API level 26
      abstract fun name(): String!
Returns the attribute name.
| Return | |
|---|---|
| String! | The attribute name | 
value
Added in API level 26
      abstract fun value(): T
Returns the attribute value.
| Return | |
|---|---|
| T | The attribute value | 
