我正在阅读chdir
中的node.js
命令,例如,此片段:
console.log("The current working directory is " + process.cwd());
try {
process.chdir("/");
} catch (exception) {
console.error("chdir error: " + exception.message);
}
console.log("The current working directory is now " + process.cwd());
然而,我无法弄清楚为什么我需要它。我非常感谢一些用例示例,以便进行一般性的理解。
答案 0 :(得分:1)
它并不是非常有用。您可以放心地忽略它,直到遇到您确实需要Node进程在其他目录中工作的情况。例如,如果您使用一些在当前目录中转储文件的行为不当的库,则可以在使用该库之前更改当前目录。