如果找到文件,我试图实现以下if条件跳过下载过程。但if条件似乎没有工作,如果没有条件,这工作正常。有人可以帮忙解决这个问题。我想,我使用了if条件不正确。
File file = new File( Environment.getExternalStorageDirectory().getAbsolutePath() + "/Android/data/com.sample.project/files/images/");
if(file.getPath().equals(false)){
String url = "http://www.sample.com/example.zip";
new DownloadTask().execute( url );
}
答案 0 :(得分:0)
File
类的exists()函数。
if (file.exists()){
//true
}else{
//false
}
有许多类似的问题可能有所帮助:
希望它有所帮助。