用nodejs封装exists函数
时间: 2023-01-28 15:18:47 浏览: 126
要使用 Node.js 封装 `exists` 函数,你可以使用 `fs.exists` 方法,它的用法如下:
```
fs.exists(path, callback)
```
这个方法接受两个参数:
- `path`:要检查的文件或目录的路径。
- `callback`:一个回调函数,它接受一个布尔值参数,表示文件或目录是否存在。
例如,你可以使用以下代码来检查文件是否存在:
```
const fs = require('fs');
const filePath = '/path/to/file';
fs.exists(filePath, (exists) => {
if (exists) {
console.log(`The file exists`);
} else {
console.log(`The file does not exist`);
}
});
```
注意:`fs.exists` 方法已被废弃,建议使用 `fs.stat` 或 `fs.access` 方法来检查文件或目录是否存在。
阅读全文