Returns true if the given path points to a file. If path is a link the link will be followed and we report on the resolved path.
path
isFile("~/fred.jpg");
bool isFile(String path) => core.isFile(path);