typeSync method

FileSystemEntityType typeSync (String path, { bool followLinks: true })

Synchronously finds the type of file system object that a path points to.

Returns a FileSystemEntityType.

FileSystemEntityType has the constant instances file, directory, link, and notFound. type will return link only if the optional named argument followLinks is false, and path points to a link. If the path does not point to a file system object, or any other error occurs in looking up the path, notFound is returned. The only error or exception that may be thrown is ArgumentError, caused by passing the wrong type of arguments to the function.

Implementation

static FileSystemEntityType typeSync(String path, {bool followLinks: true}) {
  return _getTypeSync(_toUtf8Array(path), followLinks);
}