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