Uses of Interface
java.nio.file.attribute.FileAttributeView
-
Packages that use FileAttributeView 软件包 描述 java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。java.nio.file.attribute 提供访问文件和文件系统属性的接口和类。java.nio.file.spi 服务提供商类为java.nio.file
包。 -
-
Uses of FileAttributeView in java.nio.file
Methods in java.nio.file with type parameters of type FileAttributeView Modifier and Type 方法 描述 static <V extends FileAttributeView>
VFiles. getFileAttributeView(Path path, Class<V> type, LinkOption... options)
返回给定类型的文件属性视图。<V extends FileAttributeView>
VSecureDirectoryStream. getFileAttributeView(Class<V> type)
返回一个新的文件属性视图来访问此目录的文件属性。<V extends FileAttributeView>
VSecureDirectoryStream. getFileAttributeView(T path, Class<V> type, LinkOption... options)
返回一个新的文件属性视图来访问此目录中文件的文件属性。Method parameters in java.nio.file with type arguments of type FileAttributeView Modifier and Type 方法 描述 abstract boolean
FileStore. supportsFileAttributeView(Class<? extends FileAttributeView> type)
告诉这个文件存储是否支持由给定文件属性视图标识的文件属性。 -
Uses of FileAttributeView in java.nio.file.attribute
Subinterfaces of FileAttributeView in java.nio.file.attribute Modifier and Type 接口 描述 interface
AclFileAttributeView
支持读取或更新文件的访问控制列表(ACL)或文件所有者属性的文件属性视图。interface
BasicFileAttributeView
文件属性视图,提供许多文件系统通用的 基本文件属性 集的视图。interface
DosFileAttributeView
提供传统“DOS”文件属性视图的文件属性视图。interface
FileOwnerAttributeView
支持阅读或更新文件所有者的文件属性视图。interface
PosixFileAttributeView
文件属性视图,提供通常与实现便携式操作系统接口(POSIX)系列标准的操作系统使用的文件系统上的文件关联的文件属性视图。interface
UserDefinedFileAttributeView
文件属性视图,提供文件的用户定义属性(有时称为 扩展属性)的视图。 -
Uses of FileAttributeView in java.nio.file.spi
Methods in java.nio.file.spi with type parameters of type FileAttributeView Modifier and Type 方法 描述 abstract <V extends FileAttributeView>
VFileSystemProvider. getFileAttributeView(Path path, Class<V> type, LinkOption... options)
返回给定类型的文件属性视图。
-