Function: lstatIfExists()
function lstatIfExists(filePath: string): Promise<
| Stats
| BigIntStats
| null
>;
Defined in: electron/utils/fsSafeOps.ts:31
Reads filesystem entry metadata, treating a missing path as null.
Parameters
filePath
string
Returns
Promise<
| Stats
| BigIntStats
| null>