1

首先,我想说明我确实有

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

在我的清单中指定,我确实检查了 Environment.MEDIA_MOUNTED。

在我看来,真正奇怪的是它返回 true,但实际上并没有创建目录。

public static void downloadFiles(ArrayList<FileList> list) {

    for (FileList file: list) {
        try {
            // This will be the download directory
            File download = new File(downloadDirPatch.getCanonicalPath(), file.getPath());

            // downloadDirPatch is defined as follows in a different class:
            //
            // private static String updateDir = "CognitionUpdate";
            // private static File sdcard = Environment.getExternalStorageDirectory();
            // final public static File downloadDir = new File(sdcard, updateDir);
            // final public static File downloadDirPatch = new File(downloadDir, "patch");
            // final public static File downloadDirFile = new File(downloadDir, "file");

            if (DEV_MODE)
                Log.i(TAG, "Download file: " + download.getCanonicalPath());

            // Check if the directory already exists or not
            if (!download.exists())
                // The directory doesn't exist, so attempt to create it
                if (download.mkdirs()) {
                    // Directory created successfully
                    Download.download(new URL(file.getUrl() + file.getPatch()), file.getPath(), file.getName(), true);
                } else {
                    throw new ExternalStorageSetupFailedException("Download sub-directories could not be created");
                }
            else {
                // Directory already exists
                Download.download(new URL(file.getUrl() + file.getPatch()), file.getPath(), file.getName(), true);
            }
        } catch (FileNotFoundException fnfe) {
            fnfe.printStackTrace();
        } catch (IOException ie) {
            ie.printStackTrace();
        } catch (ExternalStorageSetupFailedException essfe) {
            essfe.printStackTrace();
        }
    }
}

"if (download.mkdirs())" 返回 true,但是当应用程序实际下载文件时,它会抛出一个

FileNotFoundException: open failed: ENOENT (No such file or directory)

异常,然后当我在手机上检查目录时,它不存在。

在程序的早期,应用程序设置了父下载目录,并且使用 File.mkdir() 一切正常,但 File.mkdirs() 对我来说似乎无法正常工作。

4

1 回答 1

2

您的问题没有提供有关FileNotFoundException. 检查触发此操作的路径。忘记您认为的路径是什么,记录它或通过调试器运行它以查看它的真正含义。

根据未正确创建的目录,验证(用你的眼睛)路径是否真的是你认为的那样。我看到你已经在记录download.getCanonicalPath了,请检查你的日志到底是什么。

最后,Download.download真的在你认为的地方保存东西吗?在您调用它之前,您正在使用 准备和验证目录,但是当您调用时您download没有使用,因此无法判断。downloadDownload.download

顺便说一句,不要重复自己,您可以在不重复该Download.download行的情况下重写:

        if (!download.exists())
            if (!download.mkdirs()) {
                throw new ExternalStorageSetupFailedException("Download sub-directories could not be created");
            }
        }
        Download.download(new URL(file.getUrl() + file.getPatch()), file.getPath(), file.getName(), true);
于 2013-05-19T05:50:49.187 回答