javascript 代码中的 运行 Cmd 命令出错
Getting Error in running Cmd command in from javascript code
我正在尝试 运行 cmd 命令通过我的 javascript 代码。这是我的代码
var process = require('child_process');
process.exec('ipconfig',function (err,stdout,stderr) {
if (err) {
console.log("\n"+stderr);
} else {
console.log(stdout);
}
});
并且当我 运行 ipconfig 它 运行s 并显示所有 ip 配置但是当我 运行 ls 显示我目录中的文件时它给我错误
'ls' is not recognized as an internal or external command,
operable program or batch file.
在 Windows 控制台中,ls
不是命令。请尝试使用 dir
。
我正在尝试 运行 cmd 命令通过我的 javascript 代码。这是我的代码
var process = require('child_process');
process.exec('ipconfig',function (err,stdout,stderr) {
if (err) {
console.log("\n"+stderr);
} else {
console.log(stdout);
}
});
并且当我 运行 ipconfig 它 运行s 并显示所有 ip 配置但是当我 运行 ls 显示我目录中的文件时它给我错误
'ls' is not recognized as an internal or external command,
operable program or batch file.
在 Windows 控制台中,ls
不是命令。请尝试使用 dir
。