pathExists
pathExists(file[, callback])
通过检查文件系统来测试给定路径是否存在。与fs.exists类似,但具有正常的回调签名(err,exists)。在引擎盖下使用fs.access。
file
<String>
callback
<Function>
err
<Error>
exists
<boolean>
Example:
1 |
|
通过检查文件系统来测试给定路径是否存在。与fs.exists类似,但具有正常的回调签名(err,exists)。在引擎盖下使用fs.access。
file
<String>
callback
<Function>
err
<Error>
exists
<boolean>
1 |
|