6

我正在开发一个应用程序,它有一个下载几个文件的启动画面,在文件开始下载之前我想检查文件是否已经存在,如果它们存在我想删除它们。下面显示的代码包含正确的文件路径,并且检查文件是否存在的功能似乎可以正常工作,因为 Logcat 中的读出状态为“文件已删除”。

但是,当我检查手机本身时,我看到每当我启动应用程序时,就会有 2 个文件被添加到具有相同文件名但数量增加的文件夹中

例如启动 1 ......我明白了

clientraw.txt
clientrawextra.txt

启动 2... 我明白了

clientraw.txt
clientrawextra.txt
clientraw-1.txt
clientrawextra-1.txt

等等.....

因此,删除功能似乎不起作用,任何帮助将不胜感激!

//Code that checks if the clientraw.txt file already exists, if so the file is deleted 
File sdCard = Environment.getExternalStorageDirectory();
File file = new File(sdCard.getAbsolutePath() +
        "/Download", client);
Log.d("file path", String.valueOf(file));
if (file.exists()) {
    file.delete();
    Log.d("file", "file deleted");
}

File sdCardextra = Environment.getExternalStorageDirectory();
File fileextra = new File(sdCardextra.getAbsolutePath() +
        "/Download", clientextra);
if (fileextra.exists()) {
    fileextra.delete();
    Log.d("file", "file deleted");
}

ready();

似乎它没有足够快地删除文件?当我摆脱该ready();方法(下载文件的方法)时,它确实可以很好地删除文件,所以我认为文件在删除以前的文件之前就开始下载真的卡在这个文件上了?!

4

4 回答 4

3
public static boolean deleteDirectory(File path) {
// TODO Auto-generated method stub
if( path.exists() ) {
    File[] files = path.listFiles();
    for(int i=0; i<files.length; i++) {
        if(files[i].isDirectory()) {
            deleteDirectory(files[i]);
        }
        else {
            files[i].delete();
        }
    }
}
return(path.delete());
 }

此代码将为您提供帮助.. 在 Android 清单中,您必须获得许可才能进行修改..

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
于 2014-04-07T12:40:20.700 回答
0

要么是因为你没有权限

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

或者因为您在下载后尚未释放对该文件的处理。如果您在该文件上打开了任何文件通道或输入流或缓冲读取器,则应在尝试删除文件之前关闭它们。

于 2014-04-07T08:29:52.177 回答
0
File file = new File(selectedFilePath);
boolean deleted = file.delete();

其中 selectedFilePath 是您要删除的文件的路径 - 例如:

/sdcard/YourCustomDirectory/ExampleFile.mp3

如果它不起作用,请检查路径

于 2013-09-18T08:24:04.803 回答
0

您可以通过文件路径删除特定文件...试试这个

public static void deletFile(String file) {
    File f = new File(file);
    if (f.delete()) {
        Log.d("00000", "delete");
    }
    else{
        Log.d("00000", "Not delete");
    }
}
于 2017-08-19T06:28:20.763 回答