文件是否存在

/**
     * 判断SD卡上的文件是否存在
     * 
     * pathName = "/storage/sdcard0/doc/1.txt"
     * 
     * @param pathName
     * @return
     */
    public static boolean isFileExist(String pathName) {
        File file = new File(pathName);
        return file.exists();
    }

 

posted on 2016-12-02 16:08  随缘101  阅读(124)  评论(0编辑  收藏  举报