FileUtils.deleteDirectory尝试删除以句点结尾的目录



我有一个目录,在那里我以编程方式(在Java中)进行递归解压缩(这似乎很有效),但最终我留下了一个有很多子目录和文件的目录。每次运行这个方法时,我都想从头开始,所以我总是删除临时目录中的文件夹及其遗留文件和子目录。

    root = new File(System.getProperty("java.io.tmpdir")+ File.separator + "ProductionTXOnlineCompletionDataPreProcessorRoot");
    if(root.exists()){
        try {
            FileUtils.deleteDirectory(root);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    if(root.mkdir()){
        rawFile = createRawDataFile();
    }

不过,我从FileUtils.deleteDirectory收到了一个非常奇怪的错误。

14:55:27,214 ERROR [stderr] (Thread-3 (HornetQ-client-global-threads-2098205981)) java.io.IOException: Unable to delete directory C:UsersAdminAppDataLocalTempProductionTXOnlineCompletionDataPreProcessorRootProductionTXOnlineCompletionDataPreProcessor8718674704286818303.

它似乎认为我的目录末尾有一个句点(它没有,所以它不能删除它也就不足为奇了)。有时,此错误会出现在子目录中的文件夹上。以前有人见过这个吗?

我正在使用Commons IO 2.4 jar。

EDIT我已经确认目录没有句点,所以除非它们是不可见的,否则我不知道为什么该方法会认为有句点。我给该方法的File路径是在将其作为参数输入之前设置的,正如任何人所看到的,它的末尾没有句点。

我在Windows7上运行这个程序。

EDIT这是我用于递归解压缩的代码:

private void extractFolder(String zipFile) throws IOException 
{
    int BUFFER = 2048;
    File file = new File(zipFile);
    ZipFile zip = null;
    String newPath = zipFile.substring(0, zipFile.length() - 4);
    BufferedOutputStream dest = null;
    BufferedInputStream is = null;
    try{
        zip = new ZipFile(zipFile);
        Enumeration<? extends ZipEntry> zipFileEntries = zip.entries();
        while (zipFileEntries.hasMoreElements())
        {
            ZipEntry entry = (ZipEntry) zipFileEntries.nextElement();
            String currentEntry = entry.getName();
            File destFile = new File(newPath, currentEntry);
            File destinationParent = destFile.getParentFile();
            destinationParent.mkdirs();
            if (!entry.isDirectory())
            {
                is = new BufferedInputStream(zip
                .getInputStream(entry));
                int currentByte;
                byte data[] = new byte[BUFFER];
                FileOutputStream fos = new FileOutputStream(destFile);
                dest = new BufferedOutputStream(fos, BUFFER);
                // read and write until last byte is encountered
                while ((currentByte = is.read(data, 0, BUFFER)) != -1) {
                    dest.write(data, 0, currentByte);
                }
                dest.flush();
            }
            if (currentEntry.endsWith(".zip")){
                // found a zip file, try to open
                extractFolder(destFile.getAbsolutePath());
            }
    }
    }catch(Exception e){
        e.printStackTrace();
    }finally{
        if(dest!=null) {dest.close();}
        if(is!=null) {is.close();}
        zip.close();
    }
}

我将原始zip放入根目录,然后从那里递归地解压缩。

这是显示以下内容的相关代码:

downloadInputStreamToFileInRootDir(in, rawFile);
try {
        extractFolder(rawFile.getCanonicalPath());
    } catch (IOException e) {
        e.printStackTrace();
    }catch (Exception e){
    }

我刚刚注意到,我最初使用rawFile.getCanonicalPath()(在第一个代码摘录中设置了rawFile)作为extractFolder的参数,然后切换到destFile.getAbsolutePath()……也许这与此有关。测试这个问题的问题是问题不确定。有时会发生,有时不会。

句点是错误消息的一部分。它并不是试图删除末尾带有句点的文件路径。请参阅FileUtils来源:

if (!directory.delete()) {
    final String message =
            "Unable to delete directory " + directory + ".";
    throw new IOException(message);
}

相关内容

  • 没有找到相关文章

最新更新