判断文件是否存在。
static Future<bool> exists(String path) async { File file = File(path); return file.exists(); }