fileExists property

bool get fileExists

Checks if the file exists

Returns true if the file exists at this path

Example:

print('/path/to/document.pdf'.fileExists); // true or false

Implementation

bool get fileExists => QFileInfoUtils.fileExists(this);