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 Modifier and Type Class 描述 class
LinkOption
定义如何处理符号链接的选项。class
StandardCopyOption
定义标准复制选项。Methods in java.nio.file with parameters of type CopyOption Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 abstract void
FileSystemProvider. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。abstract void
FileSystemProvider. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。
-