Node.js - 以与平台无关的方式查找当前工作目录(CWD)

问题描述 投票:0回答:1

基本上与 Node.js 相同的任务 - 以与平台无关的方式查找主目录 但有了 CWD

node.js filesystems platform-independent cwd platform-agnostic
1个回答
0
投票

获取当前工作目录 使用 Node.js ,您可以使用

process.cwd() 

方法。此方法以表示绝对路径的字符串形式返回当前工作目录 Node.js 进程当前运行的文件夹的位置。

© www.soinside.com 2019 - 2024. All rights reserved.