如何将文件和目录移动到Java中的另一个目录?我正在使用此技术进行复制,但是我需要移动:
File srcFile = new File(file.getCanonicalPath());
String destinationpt = "/home/dev702/Desktop/svn-tempfiles";
copyFiles(srcFile, new File(destinationpt+File.separator+srcFile.getName()));
最佳答案
您可以尝试以下方法:
srcFile.renameTo(new File("C:\\folderB\\" + srcFile.getName()));
关于java - 如何移动文件和目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22014258/