移动指定文件夹内的全部文件
大家知道在程序中要怎样移动指定文件夹内的全部文件吗?如果我们逐个移动这样在工作中难免会影响工作的效率,下面大家一起跟着爱站技术频道小编来学习一下吧!
import java.io.File;
public class FileMove {
/**
* 移动指定文件夹内的全部文件
*
* @param fromDir
* 要移动的文件目录
* @param toDir
* 目标文件目录
* @throws Exception
*/
public static void fileMove(String from, String to) throws Exception {
try {
File dir = new File(from);
// 文件一览
File[] files = dir.listFiles();
if (files == null)
return;
// 目标
File moveDir = new File(to);
if (!moveDir.exists()) {
moveDir.mkdirs();
}
// 文件移动
for (int i = 0; i
if (files[i].isDirectory()) {
fileMove(files[i].getPath(), to + "\\" + files[i].getName());
// 成功,删除原文件
files[i].delete();
}
File moveFile = new File(moveDir.getPath() + "\\"
+ files[i].getName());
// 目标文件夹下存在的话,删除
if (moveFile.exists()) {
moveFile.delete();
}
files[i].renameTo(moveFile);
}
} catch (Exception e) {
throw e;
}
}
}
以上是移动指定文件夹内的全部文件的代码操作,大家都了解了吗?想要学习更多的知识,请继续关注爱站技术频道!
下一篇:访问管理类-封装Java数据库