fs.exists()方法是fs模块的内置应用程序编程接口,该接口提供了一种API,用于以围绕标准POSIX函数的紧密建模方式与文件系统进行交互。 fs.exists()方法用于测试给定路径在文件系统中是否存在。
用法:
fs.exists( path, callback )
参数:该方法接受上述和以下所述的两个参数:
- path:要测试目录是否存在的路径。它可以是字符串,缓冲区等。
- callback:它是传递给exists()方法的回调函数。
返回值:它返回布尔值,表示该路径存在或不存在。
注意:现在已弃用。
以下示例说明了如何在Node.js中使用fs.exists()方法:
范例1:
// Node.js program to demonstrate the
// fs.exists() method
var fs = require('fs');
// Using fs.exists() method
fs.exists('/etc/passwd', (exists) => {
console.log(exists ? 'Found' :'Not Found!');
});
输出:
Found
范例2:
// Node.js program to demonstrate the
// fs.exists() method
var fs = require('fs');
// Using fs.exists() method
fs.exists('/etc/geeks', (exists) => {
console.log(exists ? 'Found' :'Not found!');
});
输出:
Not found!
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/dist/latest-v13.x/docs/api/fs.html#fs_fs_exists_path_callback
相关用法
注:本文由纯净天空筛选整理自shuraj1825大神的英文原创作品 Node.js | fs.exists() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。