exists static method

Future<bool> exists(
  1. String path
)

判断文件是否存在。

Implementation

static Future<bool> exists(String path) async {
  File file = File(path);
  return file.exists();
}