String extra=imagepath.get(i).toString();
String extra2=imageid.get(i).toString();
String path = "/mnt/sdcard/Android/data/com.example.webdata/files/Download/" + extra2 + ".jpg";
File f = new File(path);
if(f.exists())
{
//Toast.makeText(getApplicationContext(), "File already exists....",
// Toast.LENGTH_SHORT).show();
}
else
{
downloadfile();
}
我正在使用上面的代码来检查文件是否存在。我用一个文件检查过它,它工作正常,但是当我在有多个(100-200)图像的应用程序中使用它时,它总是开始下载文件,无论它们是否存在。还有比这更好的方法吗?