是否有任何API可以从绝对文件路径检索文件名?
例如"foo.txt"来自"/var/www/foo.txt"
"foo.txt"
"/var/www/foo.txt"
我知道它可以像字符串操作一样工作,fullpath.replace(/.+\//, '') 但是我想知道还有没有像file.getName()Java 这样的“正式”方式可以做到这一点。
fullpath.replace(/.+\//, '')
file.getName()
NodeJS从绝对路径获取文件名?
使用模块的basename方法path:
basename
path
path.basename('/foo/bar/baz/asdf/quux.html') // returns 'quux.html'
这是上面示例的文档。