entryExists function

bool entryExists(
  1. String path
)

Determines if a file or directory exists at path.

Implementation

bool entryExists(String path) =>
    dirExists(path) || fileExists(path) || linkExists(path);