如何删除getExternalFilesDir(null)android中的内容

时间:2014-03-20 20:20:34

标签: android android-external-storage

我使用以下命令保存了一些文件:

File file = new File(cont.getExternalFilesDir(null), filename);

如何删除我保存的所有文件?我需要清除cont.getExternalFilesDir(null)目录的内容。 感谢

3 个答案:

答案 0 :(得分:2)

如果您只想删除Perroloco所说的文件,但如果您需要删除所有内容,我认为OO方法会更好:)

首先构建一个以递归方式删除目录中文件的方法

private void deleteAllContent(File file,String... filename) {
    if (file.isDirectory())
        for (File child : file.listFiles())
            deleteAllContent(child);
    if(filename==null)
        file.delete();
    else
        for(String fn:filename)
            if(file.getName().equals(filename))
                file.delete(); 
}

然后,您可以使用外部文件dir调用新方法。

deleteAllContent(cont.getExternalFilesDir(null));

deleteAllContent(cont.getExternalFilesDir(null),"myfile1","myfile2","etc");

答案 1 :(得分:1)

File file = new File(cont.getExternalFilesDir(null), filename);
file.delete();

答案 2 :(得分:0)

您可以使用以下方法删除所有Dir

private static boolean deleteDir(File dir) {
    if (dir != null && dir.isDirectory()) {
        String[] children = dir.list();
        if (children != null) {
            for (String child : children) {
                boolean success = deleteDir(new File(dir, child));
                if (!success) {
                    return false;
                }
            }
        }
        return dir.delete();
    } else if (dir != null && dir.isFile()) {
        return dir.delete();
    } else {
        return false;
    }
}

然后致电:

 try {
        File dir = this.getExternalFilesDir("yourdirname");
        deleteDir(dir);
    } catch (Exception e) {
        e.printStackTrace();
    }