NodeJS-将相对路径转换为绝对路径

在我的 文件系统中, 我的工作目录在这里:

在b \ bb下有文件:tmp.txt

如果要从工作目录转到该文件,请使用以下路径:

"../../bb/tmp.txt"

如果文件不存在,我想记录完整路径并告诉用户:

我需要一些 是 转换相对路径: “../../bb/tmp.txt”绝对: “C:\ TEMP \ A \ B \ BB \

tmp.txt”

在我的代码中应该是这样的:

console.log("The file" + convertToAbs("../../bb/tmp.txt") + " is not exist")

回答:

path.resolve

尝试:

resolve = require('path').resolve

resolve('../../bb/tmp.txt')

以上是 NodeJS-将相对路径转换为绝对路径 的全部内容, 来源链接: utcz.com/qa/407487.html

回到顶部