Returns whether file exists on the file system.
file
This returns true for a symlink only if that symlink is unbroken and points to a file.
true
bool fileExists(String file) => File(file).existsSync();