fileExists property

bool get fileExists

判断文件是否存在

返回一个布尔值,表示文件是否存在

Implementation

bool get fileExists {
  return File(this).existsSync();
}