我正在尝试创建一个将文件从一个文件夹自动移动到另一个文件夹的exe。我很难尝试编写代码,从我想要的位置抓取文件。这是我到目前为止的代码。
public class Transfer {
Path source = C:\Users\Name\Google Drive;
Path newdir = C:\Users\Name\Desktop;
Files.move(source, newdir.resolve(source.getFileName()), REPLACE_EXISTING);
}
答案 0 :(得分:1)
如果你有很多文件操作,你可以使用Apache的FileUtils,它非常容易使用: http://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/FileUtils.html
查看方法move *。
答案 1 :(得分:0)
您可以在文件操作上尝试使用mkyong.com解决方案:http://www.mkyong.com/java/how-to-move-file-to-another-directory-in-java/