existsSync method
Determines whether file exists on disk.
Implementation
bool existsSync() => Env.isWindows
? WindowsPath(_string).existsSync()
: UnixPath(_string).existsSync();
Determines whether file exists on disk.
bool existsSync() => Env.isWindows
? WindowsPath(_string).existsSync()
: UnixPath(_string).existsSync();