我有一个文件夹,其中有一个 .dat 文件,一个是 .zip 文件,我必须将 .zip 文件移动到另一个目录
我有两个文件夹一个是
1) c:\source folder --> having two files abc.dat and other is abc.zip
2) c:\destination ---> in which zip shpould be get copied
请告知如何实现我现在所做的仪式是......
File directory = new File(sourceFolder);
File[] listFiles = (mcrpFilePath).listFiles();
for (File f : listFiles) {
if (f.isFile()) { // ?? here logic to pick up the zip file
//logic to move the zip file to other directory
}
}