可能重复:
在 Java 中将文件从一个目录复制到另一个目录
java - 如何使用java将所有文件从一个文件夹移动到另一个文件夹?我正在使用这段代码:
import java.io.File;
public class Vlad {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
// File (or directory) to be moved
File file = new File("C:\\Users\\i074924\\Desktop\\Test\\vlad.txt");
// Destination directory
File dir = new File("C:\\Users\\i074924\\Desktop\\Test2");
// Move file to new directory
boolean success = file.renameTo(new File(dir, file.getName()));
if (!success) {
System.out.print("not good");
}
}
}
但它只适用于一个特定的文件。
谢谢!!!