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");
}
}
}
ただし、特定の1つのファイルに対してのみ機能しています。
ありがとう!!!