fileExists method

bool fileExists(
  1. String path
)

Checks if a file exists

path - File path to check Returns true if file exists

Implementation

bool fileExists(String path) {
  return exists(path);
}