export function checkIfFileExists()

in vscode-extension/src/utils.ts [85:92]


export function checkIfFileExists(filePath: string): boolean {
    try {
        fs.accessSync(filePath, fs.constants.R_OK);
        return true;
    } catch (e) {
        return false;
    }
}