2

假设我希望程序“C:\MyProgram.exe”使用两个变量的参数运行。出现的问题是 MyProgram 只接收 2 个参数,而我清楚地传递了 3 个参数。

我的代码:

SHELLEXECUTEINFO    ShExecInfo = { 0 };
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
ShExecInfo.hwnd = NULL;
ShExecInfo.lpVerb = NULL;
ShExecInfo.lpDirectory = NULL;
ShExecInfo.nShow = SW_SHOW;
ShExecInfo.hInstApp = NULL;

ShExecInfo.lpFile = T("\"C:\\MyProgram.exe\"");
ShExecInfo.lpParameters = _T("\"\"") _T(" ") + dir + file[i] + _T(" ") + dir + outputfile + _T(".TIFF");
ShellExecuteEx(&ShExecInfo);
WaitForSingleObject(ShExecInfo.hProcess, 1500);
if(GetExitCodeProcess(ShExecInfo.hProcess, &exitCode)){
    MessageBox(_T("Conversion ") + file[i] + _T(" unsuccesful."), _T("TEST!"), MB_OK);
    succes = 0;
}

因为互联网上没有太多关于 ShellExecuteEx 可变参数的信息,所以我找不到合适的解释。

你们中有人知道如何解决这个问题吗?提前致谢!

4

2 回答 2

2

仅仅是因为您的构造产生了一个临时对象并且存储了指向它的指针(我猜是一个 CString),但是当您启动程序时临时对象已经被销毁。

auto str = _T("\"\"") _T(" ") + dir + file[i] + _T(" ") + dir + outputfile + _T(".TIFF");
ShExecInfo.lpParameters = str;
ShellExecuteEx(&ShExecInfo);
于 2015-03-17T09:53:23.647 回答
0

您是否检查了MyProgram接收的这两个参数,它们有什么值?

问题很可能是这段代码:

ShExecInfo.lpParameters = _T("\"\"") _T(" ") + dir + file[i] + _T(" ") + dir + outputfile + _T(".TIFF");

您没有说什么类型dirfile[i]有什么类型,但一般来说,添加这样的 C 样式字符串(TCHAR[]TCHAR*仍然是 C 样式字符串)不会连接它们,如果这是您期望在这种情况下发生的情况。

通过显示或最好使用调试器检查ShExecInfo.lpParameters该分配之后包含的内容。

于 2015-03-17T09:52:21.790 回答