在java 7 中文件移动复制简单方法
文件移动
Path source=Paths.get("D:\\sa\\123.txt");
Path target=Paths.get("D:\\lb\\en\\124.txt");
Files.move(source, target);
文件复制
Files.copy(source, target);
2023-08-07 14:14:16
在java 7 中文件移动复制简单方法
文件移动
Path source=Paths.get("D:\\sa\\123.txt");
Path target=Paths.get("D:\\lb\\en\\124.txt");
Files.move(source, target);
文件复制
Files.copy(source, target);