我的 sdcard 内的 app 文件夹中有一些零字节文件,我无法删除这些文件。
final String path = Environment.getExternalStorageDirectory().getAbsolutePath()+"/"+"AppFolder"+"/"+"Music";
File file=new File(path,filee);
if(file.exists())
{
boolean delete=file.delete();
Log.d("TAG",""+delete);
}
这里的“filee”是文件的名称(.mp3)。此代码不起作用,因为从技术上讲该文件不存在。
有谁知道如何解决这个问题?