Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 nodejs 应用程序。
如何获得应用程序根目录的绝对路径?var rootDir = ....
var absolute_path = __dirname;
到目前为止,我只看到根目录是“/app”。
3年后有点晚了,但对于后代来说。__dirname 的问题仅与调用它的文件相关。
我使用 nodejs 的路径模块来获取我的应用程序的根路径
path.dirname(require.main.filename)