isSymlinkSync method
Returns true if the path exists on disk and is pointing at a symlink. Does not follow links.
Implementation
bool isSymlinkSync() =>
isWindows ? WindowsPath(_string).isSymlinkSync() : UnixPath(_string).isSymlinkSync();
Returns true if the path exists on disk and is pointing at a symlink. Does not follow links.
bool isSymlinkSync() =>
isWindows ? WindowsPath(_string).isSymlinkSync() : UnixPath(_string).isSymlinkSync();