Edit:
Desde o nó v10.0.0
, poderíamos usarfs.promises.access(...)
Exemplo de código assíncrono que verifica se o arquivo existe:
async function checkFileExists(file) {
return fs.promises.access(file, fs.constants.F_OK)
.then(() => true)
.catch(() => false)
}
Uma alternativa para stat pode estar usando o novo fs.access(...)
:
função de promessa curta reduzida para verificação:
s => new Promise(r=>fs.access(s, fs.constants.F_OK, e => r(!e)))
Uso da amostra:
let checkFileExists = s => new Promise(r=>fs.access(s, fs.constants.F_OK, e => r(!e)))
checkFileExists("Some File Location")
.then(bool => console.log(´file exists: ${bool}´))
Promessa expandida:
// returns a promise which resolves true if file exists:
function checkFileExists(filepath){
return new Promise((resolve, reject) => {
fs.access(filepath, fs.constants.F_OK, error => {
resolve(!error);
});
});
}
ou se você quiser fazer isso de forma síncrona:
function checkFileExistsSync(filepath){
let flag = true;
try{
fs.accessSync(filepath, fs.constants.F_OK);
}catch(e){
flag = false;
}
return flag;
}
fs.access('file', err => err ? 'does not exist' : 'exists')
, consulte fs.access