2

下面的方法具有简单地将文件从“工作”目录移动到它通过方法调用接收的路径的“移动”目录的功能。这一切都有效,但对于文件名具有两个扩展名(如 .xml.md5)的情况,其中 .renameTo 方法返回 false。有没有办法改变下面的代码,所以不管它运行在什么操作系统上,它都可以工作。(目前是Windows)

public void moveToDir(String workDir, String moveDir) throws Exception {
    File tempFile = new File(workDir);
    File[] filesInWorkingDir = tempFile.listFiles();
    for (File file : filesInWorkingDir) {
        System.out.println(file.getName());
        if (new File(moveDir + File.separator + file.getName()).exists()) 
            new File(moveDir + File.separator + file.getName()).delete();
        System.out.println(moveDir + File.separator + file.getName());
        Boolean renameSuccessful = file.renameTo(new File(moveDir + File.separator + file.getName()));
        if (!renameSuccessful) throw new Exception("Can't move file to " + moveDir +": " + file.getPath());
    }
}
4

1 回答 1

2

我已经简化了您的代码并添加了删除是否成功的检查。尝试一下。

public void moveToDir(String workDir, String moveDir) {
  for (File file : new File(workDir).listFiles()) {
      System.out.println(file.getName());
      final File toFile = new File(moveDir, file.getName());
      if (toFile.exists() && !toFile.delete())
        throw new RuntimeException("Cannot delete " + toFile);
      System.out.println(toFile);
      if (!file.renameTo(toFile))
        throw new RuntimeException(
          "Can't move file to " + moveDir +": " + file.getPath());
  }
}
于 2012-04-20T13:01:39.890 回答