CreateProcess() Error

不羁的心 提交于 2019-12-18 07:18:12

问题


STARTUPINFO si;
PROCESS_INFORMATION pi;
memset(&si, 0, sizeof(si));
memset(&pi, 0, sizeof(pi));
si.cb = sizeof(si);

LPCWSTR procName =(LPCWSTR)"D:\\test dir 1\\Calc.exe";
LPWSTR procArg   =(LPWSTR)"blacknull";

if(CreateProcess(procName,procArg,0,0,0,CREATE_DEFAULT_ERROR_MODE,0,0,&si,&pi))
{
    //do some work
}

printf( "CreateProcess failed (%d).\n", GetLastError());
     system("Pause");

It keeps throwing Error(2)-> The System cannot find the file specified.

I don't know what's wrong. I also tried to use "Calc.exe" which in the same Dir. but it's not working.


回答1:


You use the L prefix to make a wide character string:

L"D:\\test dir 1\\Calc.exe";

Casting a string literal to a different character width does not make a string wider.




回答2:


In addition to the string type issue already pointed out, the second argument (lpCommandLine) must point to a writable buffer, not a constant string. You can do this by declaring it as follows:

WCHAR procArg[] = L"blacknull";

This is documented in MSDN: "The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation."



来源:https://stackoverflow.com/questions/8844076/createprocess-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!