在我的应用程序中,会创建一些临时文件,其名称以“temp”开头。如何在退出时从SD卡中删除这些文件。

最佳答案

从SDCard中删除文件的方式如下:

File folder = new File(Environment.getExternalStorageDirectory() + "/tempdirname");

 try {
    File[] filenamestemp = folder.listFiles();

    for(int i=0;i<filenamestemp.length;i++){
          if(filenamestemp[i].getAbsolutePath().toString().contains("temp"))
             filenamestemp[i].delete();
        }

    } catch (IOException e) {
    // TODO Auto-generated catch block
     e.printStackTrace();
   }

并确保您在AndroidManifest.xml中添加了SDCard访问权限:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

07-24 09:37