Module java.base

Interface DosFileAttributes

All Superinterfaces:
BasicFileAttributes

public interface DosFileAttributes extends BasicFileAttributes
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);

Since:
1.7