Android

Android判断本地文件是否存在

2019-08-24  本文已影响0人  i宁静的鱼

方法如下,传入参数为文件的绝对路径

    //判断文件是否存在
    private boolean fileIsExists(String filePath)
    {
        try
        {
            File f = new File(filePath);
            if(!f.exists())
            {
                return false;
            }
        }
        catch (Exception e)
        {
            return false;
        }
        return true;
    }

更多内容点此查看。

上一篇下一篇

猜你喜欢

热点阅读