c++进程启动路径问题

发布于 2024-09-13 14:06:24 字数 237 浏览 3 评论 0原文

我正在使用 process::start(PATH); 来打开该进程。问题是,有时它找到该文件,有时却找不到。

例如,这有效:

process::start("C:\text.exe");

但这不起作用:

process::start("C:\New Folder\text.exe");

知道有什么区别吗?

I'm using process::start(PATH); to open up the process. The problem is, sometimes it finds the file and sometimes it doesn't.

For example, this works:

process::start("C:\text.exe");

But this doesn't work:

process::start("C:\New Folder\text.exe");

Any idea what the difference is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

两人的回忆 2024-09-20 14:06:24

您必须转义 \ 字符。

在 C 字符串中,\tTAB 字符。使用:

process::start("C:\\New Folder\\text.exe");

You have to escape the \ characters.

In a C string \t is the TAB character. Use:

process::start("C:\\New Folder\\text.exe");
心凉 2024-09-20 14:06:24

该库可能认为 c:\New 是您正在运行的程序,Folder\text.exe 是您传递给它的参数。

您可能需要引用它,因此您可以这样调用:

"C:\New Folder\text.exe"

作为 C++ 字符串,它看起来像这样:

process::start("\"C:\\New Folder\\text.exe\"");

The library might think that c:\New is the program you are running, and Folder\text.exe is an argument you are passing to it.

You might need to quote it, so you're calling this:

"C:\New Folder\text.exe"

Which as a C++ string would look like this:

process::start("\"C:\\New Folder\\text.exe\"");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文