作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道存在在 fs 中已被弃用,但它可以在 fs-extra 中使用。
我使用了 fsExtra.pathExists 和 fsExtra.exists。
但我找不到区别。
它们的表现相同。
最佳答案
这两种方法没有太大区别。
fs-extra
是 fs
的超集,继承 all它的方法,因此 fsExtra.exists
与 fs.exists
相同。正如您所说,它已被弃用。
exists()
和 pathExists()
之间的区别在于 signature的功能。
Like fs.exists, but with a normal callback signature (err, exists).
在内部,fs
native 模块使用 try catch block ,而 fs-extra
使用 Promise 样式。它们都使用 fs.access()
方法来确定指定文件是否可访问。
是的,它们都有相同的用途。
关于javascript - fsExtra.pathExists 和 fsExtra.exists 之间有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56488179/
我知道存在在 fs 中已被弃用,但它可以在 fs-extra 中使用。 我使用了 fsExtra.pathExists 和 fsExtra.exists。 但我找不到区别。 它们的表现相同。 最佳答案
本文整理了Java中com.twitter.distributedlog.impl.metadata.ZKLogMetadataForWriter.pathExists()方法的一些代码示例,展示了Z
我是一名优秀的程序员,十分优秀!