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 变量和类型 类 描述 classLinkOption定义如何处理符号链接的选项。classStandardCopyOption定义标准副本选项。Methods in java.nio.file with parameters of type CopyOption 变量和类型 方法 描述 static longFiles. copy(InputStream in, Path target, CopyOption... options)将输入流中的所有字节复制到文件。static PathFiles. copy(Path source, Path target, CopyOption... options)将文件复制到目标文件。static PathFiles. 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 voidFileSystemProvider. copy(Path source, Path target, CopyOption... options)将文件复制到目标文件。abstract voidFileSystemProvider. move(Path source, Path target, CopyOption... options)将文件移动或重命名为目标文件。
-