Appearance
接口定义
📔:
js
pathExists(file[, callback])
参数:
file <String>
callback <Function>
err <Error>
exists <boolean>
示例
js
const fs = require('fs-extra')
const file = '/tmp/this/path/does/not/exist/file.txt'
// 1️⃣ 使用回调
fs.pathExists(file, (err, exists) => {
console.log(err) // null
console.log(exists) // false
})
// 2️⃣ 使用Promise
fs.pathExists(file)
.then(exists => console.log(exists)) // false
// 3️⃣ 使用async/await
aysnc function example(f) {
await fs.pathExists(f)
console.log(exists) // false
}
example(file)
2022年08月15日20:08:40