Added in API level 26

DosFileAttributes

interface DosFileAttributes : BasicFileAttributes
java.nio.file.attribute.DosFileAttributes

File attributes associated with a file in a file system that supports legacy "DOS" attributes.

Usage Example:

Path file = ...
     DosFileAttributes attrs = Files.readAttributes(file, DosFileAttributes.class);
  

Summary

Public methods
abstract Boolean

Returns the value of the archive attribute.

abstract Boolean

Returns the value of the hidden attribute.

abstract Boolean

Returns the value of the read-only attribute.

abstract Boolean

Returns the value of the system attribute.

Inherited functions

Public methods

isArchive

Added in API level 26
abstract fun isArchive(): Boolean

Returns the value of the archive attribute.

This attribute is typically used by backup programs.

Return
Boolean the value of the archive attribute

isHidden

Added in API level 26
abstract fun isHidden(): Boolean

Returns the value of the hidden attribute.

This attribute is often used to indicate if the file is visible to users.

Return
Boolean the value of the hidden attribute

isReadOnly

Added in API level 26
abstract fun isReadOnly(): Boolean

Returns the value of the read-only attribute.

This attribute is often used as a simple access control mechanism to prevent files from being deleted or updated. Whether the file system or platform does any enforcement to prevent read-only files from being updated is implementation specific.

Return
Boolean the value of the read-only attribute

isSystem

Added in API level 26
abstract fun isSystem(): Boolean

Returns the value of the system attribute.

This attribute is often used to indicate that the file is a component of the operating system.

Return
Boolean the value of the system attribute