isLinkSync static method

bool isLinkSync(
  1. String path
)
override

Synchronously checks whether path refers to a link.

Checks whether typeSync(path, followLinks: false) returns FileSystemEntityType.link.

Implementation

static bool isLinkSync(String path) => typeSync(path) == FileSystemEntityType.link;