gpt4 book ai didi

java - 在java中移动文件

转载 作者:行者123 更新时间:2023-11-30 06:53:51 25 4
gpt4 key购买 nike

我目前正在通过以下方式在 java 中移动文件:

private static void moveFile(String fileName, String folderName) {
String name= fileName.substring(fileName.lastIndexOf('\\'), fileName.length());
new File(fileName).renameTo(new File(folderName+ File.separator + name));
}

有没有更快的方法?我需要优化这段代码。

最佳答案

试试这个

         Path source = ...
Path newdir = ...
Files.move(source, newdir.resolve(source.getFileName()), REPLACE_EXISTING);

关于java - 在java中移动文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36982390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com