做什么./
意思?我假设它用于搜索路径,但我不确定这是否属实。我知道,例如,在 C# 中,如果我想搜索可以使用的路径../../file.exe
。
目前我想要的是使用以下代码node.js
从我的应用程序中运行命令:NW.js
var exec = require('child_process').exec;
exec('node ./server.js', function(error, stdout, stderr) {
console.log('stdout: ', stdout);
console.log('stderr: ', stderr);
if (error !== null) {
console.log('exec error: ', error);
}
});
但是,上面的代码不会产生预期的结果。我相信这是因为我不知道如何搜索server.js
我想要运行的路径。