gpt4 book ai didi

C++:如何使我的程序打开带有可选参数的.exe

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:04 25 4
gpt4 key购买 nike

我在使用程序时遇到了一些问题。我的目标是让它打开几个带有可选参数的 .exe 文件。例如,如果我想打开一个 pdf,我可以在 cmd 窗口中输入下面的字符串。

// If used in a cmd window it will open up my PDF reader and load MyPDF.pdf file
"c:\Test space\SumatraPDF.exe" "c:\Test space\Sub\MyPDF.pdf"

这是我用过的两个尝试。第一个打开 PDF,但当然不会加载文件。第二个根本行不通。

// Opens the PDF in my program
system("\"C:\\Test space\\SumatraPDF.exe\"");

// Error I get inside of a cmd window is the comment below
// 'C:\Test' is not recognized as an internal or external command, operable program or batch file.
//system("\"C:\\Test space\\SumatraPDF.exe\" \"C:\\Test space\\Sub\\MyPDF.pdf\"");

我不确定第二个不起作用的原因。可能是我对系统有一些误解,或者我没有正确使用定界符。

我觉得有一个专门为此设计的库,而不是创建一个使用这么多分隔符的长字符串。

感谢您的帮助。

最佳答案

欢迎来到 Stack Overflow!

系统方法通过将其参数传递给 cmd/c 来工作。所以你需要在它周围加上一组额外的引号。参见 related question雪橇发布。

作为系统的替代品,请查看 ShellExecuteShellExecuteEx Win32 API 函数。它具有更多功能,但不那么便携。

// ShellExecute needs COM to be initialized
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);

SHELLEXECUTEINFO sei = {0};
sei.cbSize = sizeof(sei);
sei.lpFile = prog; // program like c:\Windows\System32\notepad.exe
sei.lpParameters = args; // program arguments like c:\temp\foo.txt
sei.nShow = SW_NORMAL; // app should be visible and not maximized or minimized

ShellExecuteEx(&sei); // launch program

CoUninitialize();

更多信息 here .

关于C++:如何使我的程序打开带有可选参数的.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7669433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com