在启动时使用if条件 - Android

时间:2013-09-01 20:57:33

标签: java android if-statement android-file

如果找到文件,我试图实现以下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 );
        }

1 个答案:

答案 0 :(得分:0)

@Julien是对的。实际上,您可以尝试使用File类的exists()函数。

if (file.exists()){
    //true
}else{
    //false
}

有许多类似的问题可能有所帮助:

希望它有所帮助。