Determines if a file or directory exists at path.
path
bool entryExists(String path) => dirExists(path) || fileExists(path) || linkExists(path);