Java 复制和粘贴文件 NoSuchFileException.



当尝试在一个目录(字符串列表(中复制和粘贴基于文件名的字符串搜索的文件时,我收到了NoSuchFileException,基于搜索字符串创建一个新文件夹,然后将匹配的文件复制并粘贴到该文件夹中。 有人能够发现这个问题,因为我已经尝试了很长时间? 可能是文件路径太长吗?

    File[] files = new File(strSrcDir).listFiles();
    for (String term : list) {
        for (File file : files) {
            if (file.isFile()) {
                String name = file.getName();
                Pattern pn = Pattern.compile(term, Pattern.CASE_INSENSITIVE);
                Matcher m = pn.matcher(name);
                if (m.find()) {
                    try {
                        String strNewFile = "G:\Testing\" + type + "\" + term + "\" + name;
                        File newFile = new File(strNewFile);
                        Path newFilePath = newFile.toPath();
                        Path srcFilePath = file.toPath();
                        Files.copy(srcFilePath, newFilePath);
                    } catch (UnsupportedOperationException e) {
                        System.err.println(e);
                    } catch (FileAlreadyExistsException e) {
                        System.err.println(e);
                    } catch (DirectoryNotEmptyException e) {
                        System.err.println(e);
                    } catch (IOException e) {
                        System.err.println(e);
                    } catch (SecurityException e) {
                        System.err.println(e);
                    }
                }
            }
        }
    }
String strNewFile = "G:\Testing\" + type + "\" + term + "\" + name;

目录树可能不存在,Java 不会为您创建它,您需要手动创建它。

你可以这样做:

new File("G:\Testing\" + type + "\" + term).mkdirs(); // create the directory tree if it doesn't exist
String strNewFile = "G:\Testing\" + type + "\" + term + "\" + name;
File newFile = new File(strNewFile);
Path newFilePath = newFile.toPath();
Path srcFilePath = file.toPath();
Files.copy(srcFilePath, newFilePath);

相关内容

  • 没有找到相关文章

最新更新