如何检查文件的存在?

时间:2013-02-23 10:07:03

标签: android android-file

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)图像它总是开始下载文件,无论它们是否存在。有没有比这更好的方法?

1 个答案:

答案 0 :(得分:1)

首先检查文件夹上的图像数量: -

File extStore = Environment.getExternalStorageDirectory();
File[] imageDirs = extStore.listFiles(filterForImageFolders);

在上面之后你运行循环并检查你的条件: -

for(int i=0;i<list.length;i++)
{
     // ur condition
}