public interface DosFileAttributes extends BasicFileAttributes
用法示例:
Path file = ...
DosFileAttributes attrs = Files.readAttributes(file, DosFileAttributes.class);
Modifier and Type | Method and Description |
---|---|
boolean |
isArchive()
返回归档属性的值。
|
boolean |
isHidden()
返回隐藏属性的值。
|
boolean |
isReadOnly()
返回只读属性的值。
|
boolean |
isSystem()
返回系统属性的值。
|
creationTime, fileKey, isDirectory, isOther, isRegularFile, isSymbolicLink, lastAccessTime, lastModifiedTime, size
boolean isReadOnly()
此属性通常用作简单的访问控制机制,以防止文件被删除或更新。 文件系统或平台是否执行任何强制以防止只读文件被更新是具体的实现。
boolean isHidden()
此属性通常用于指示该文件是否对用户可见。
boolean isArchive()
此属性通常由备份程序使用。
boolean isSystem()
此属性通常用于指示该文件是操作系统的组件。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.