isFileSync 静态方法

bool isFileSync(
  1. String path
)

同步检查 path 是否指向一个文件。

检查 typeSync(path) 是否返回 FileSystemEntityType.file

实现

static bool isFileSync(String path) =>
    (_getTypeSync(_toUtf8Array(path), true) == FileSystemEntityType.file);