Uses of Interface
java.nio.file.attribute.BasicFileAttributes
-
Packages that use BasicFileAttributes 软件包 描述 java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。java.nio.file.attribute 提供访问文件和文件系统属性的接口和类。java.nio.file.spi java.nio.file
包的服务提供商类。 -
-
Uses of BasicFileAttributes in java.nio.file
Methods in java.nio.file with type parameters of type BasicFileAttributes Modifier and Type 方法 描述 static <A extends BasicFileAttributes>
AFiles. readAttributes(Path path, Class<A> type, LinkOption... options)
读取文件的属性作为批量操作。Methods in java.nio.file with parameters of type BasicFileAttributes Modifier and Type 方法 描述 FileVisitResult
FileVisitor. preVisitDirectory(T dir, BasicFileAttributes attrs)
在目录中的条目被访问之前调用一个目录。FileVisitResult
SimpleFileVisitor. preVisitDirectory(T dir, BasicFileAttributes attrs)
在目录中的条目被访问之前调用一个目录。FileVisitResult
FileVisitor. visitFile(T file, BasicFileAttributes attrs)
为目录中的文件调用。FileVisitResult
SimpleFileVisitor. visitFile(T file, BasicFileAttributes attrs)
为目录中的文件调用。Method parameters in java.nio.file with type arguments of type BasicFileAttributes Modifier and Type 方法 描述 static Stream<Path>
Files. find(Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
返回一个Stream
,它通过搜索基于给定起始文件的文件树中的文件来懒惰地填充Path
。 -
Uses of BasicFileAttributes in java.nio.file.attribute
Subinterfaces of BasicFileAttributes in java.nio.file.attribute Modifier and Type 接口 描述 interface
DosFileAttributes
与支持旧版“DOS”属性的文件系统中的文件相关联的文件属性。interface
PosixFileAttributes
与实现便携式操作系统接口(POSIX)系列标准的操作系统使用的文件系统上的文件相关联的文件属性。Methods in java.nio.file.attribute that return BasicFileAttributes Modifier and Type 方法 描述 BasicFileAttributes
BasicFileAttributeView. readAttributes()
读取大量操作的基本文件属性。 -
Uses of BasicFileAttributes in java.nio.file.spi
Methods in java.nio.file.spi with type parameters of type BasicFileAttributes Modifier and Type 方法 描述 abstract <A extends BasicFileAttributes>
AFileSystemProvider. readAttributes(Path path, Class<A> type, LinkOption... options)
Reads a file's attributes as a bulk operation.
-