Uses of Interface
java.nio.file.CopyOption
-
Packages that use CopyOption 软件包 描述 java.nio.file 定义Java虚拟机的接口和类,以访问文件,文件属性和文件系统。java.nio.file.spi java.nio.file
程序包的服务提供程序类。 -
-
Uses of CopyOption in java.nio.file
Classes in java.nio.file that implement CopyOption 变量和类型 类 描述 class
LinkOption
定义如何处理符号链接的选项。class
StandardCopyOption
定义标准副本选项。Methods in java.nio.file with parameters of type CopyOption 变量和类型 方法 描述 static long
Files. copy(InputStream in, Path target, CopyOption... options)
将输入流中的所有字节复制到文件。static Path
Files. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。static Path
Files. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。 -
Uses of CopyOption in java.nio.file.spi
Methods in java.nio.file.spi with parameters of type CopyOption 变量和类型 方法 描述 abstract void
FileSystemProvider. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。abstract void
FileSystemProvider. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。
-