我陷入了一种奇怪的情况,即我在 C 中有一个文件夹:命名源由一个 .dat 文件和一个 .zip 文件组成,现在我只想将 zip 文件移动到 c 中的另一个目录:命名目标
1) 现在首先我必须编写从源文件夹中获取 .zip 文件的逻辑
我尝试过的是...
private void filemove(String FilePath2, String s2) { filepath2 contains the location of source c:\\source
String destination ="C:\\target\\"
try {
File f = new File(FilePath2);
if (f.getName().endsWith(".zip")) {
//please advise the logic to copy the file to destination folder
}
} catch (Exception e) {
e.printStackTrace();
}
}
请告知将文件复制到目标文件夹的逻辑