Android中File.exists()始终返回false/路

2018-10-03  本文已影响0人  Rimson
public static boolean fileIsExists(String strFile){
        try {
            File file=new File(strFile);
            if (!file.exists()){
                return false;
            }
        }catch (Exception e){
            return false;
        }
        return true;
    }

String downloadPath=Environment.getExternalStorageDirectory().getPath()+"/dailyarticle/sound/";

if (fileIsExists(downloadPath+fileName)){
            //文件已存在
        }else {
            request.setDestinationInExternalPublicDir(downloadPath,fileName);
            DownloadManager downloadManager=(DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
            downloadID = downloadManager.enqueue(request);
        }

希望用这段代码,来实现判断文件是否存在,只有不存在时才下载,但运行时发现,即使文件存在,也会进入else语段。 (已经确定了读写权限没有问题)


Screenshot_2018-10-03-14-39-01-660_com.android.fi.png

仔细观察路径!!!发现问题所在了!!!路径中下面的语段重复了!!!

/storage/emulated/0
上一篇下一篇

猜你喜欢

热点阅读