Unable to execute child_process.exec() whe

2020-03-09 09:05发布

I am using appjs * and I want to execute a command to open a folder.

What I have

var path = __dirname + '/folder to open/'; 
// path = C:\Program Files\myapplication/folder to open/
require("child_process").exec("start " + path);

Error

Could not find file C:\Program

What I tried

I already tried to escape the spaces, that didn't work.

var path = __dirname + '/folder to open/'; 
path = path.replace(' ', '\ ');
// path = C:\Program Files\myapplication/folder to open/
require("child_process").exec("start " + path);

When I put the path between quotes, No folder is opened, only another prompt.

var path = "\"" + __dirname + "/folder to open/\"";
path = path.replace(' ', '\ ');
// path = "C:\Program Files\myapplication/folder to open/"
require("child_process").exec("start " + path);

Related bug https://github.com/isaacs/npm/pull/2479

Does anyone has a fix or a workaround?

* link removed

3条回答
等我变得足够好
2楼-- · 2020-03-09 09:28

Well, I fixed it.

Or something like it.

Instead of using

"start " + path

I used

"%SystemRoot%\\explorer.exe \"" + path + "\""

Notice the quotes and the forward slashes.

查看更多
Evening l夕情丶
3楼-- · 2020-03-09 09:32

this works for me

f= file.replace(/ /g,"\\\ ")
查看更多
家丑人穷心不美
4楼-- · 2020-03-09 09:45

To open a path than contains spaces, you must replace with a double backslash.

In your code you escaped the space character:

"\ "

What you need to do is escape the backslash character so it makes it into the output string:

"\\ "

Try this:

var path = __dirname + '/folder to open/'; 

// Notice the double-backslashes on this following line
path = path.replace(/ /g, '\\ ');

require("child_process").exec("start " + path);
查看更多
登录 后发表回答