gpt4 book ai didi

CreateProcess() 因访问冲突而失败

转载 作者:行者123 更新时间:2023-11-30 16:23:44 25 4
gpt4 key购买 nike

我的目标是在我的程序中执行外部可执行文件。首先,我用了system()功能,但我不希望用户看到控制台。于是,我搜索了一下,发现了CreateProcess()功能。但是,当我尝试向它传递参数时,我不知道为什么,它失败了。我从 MSDN 获取了这段代码,并进行了一些更改:

#include <windows.h>
#include <stdio.h>
#include <tchar.h>

void _tmain( int argc, TCHAR *argv[] )
{
STARTUPINFO si;
PROCESS_INFORMATION pi;

ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
/*
if( argc != 2 )
{
printf("Usage: %s [cmdline]\n", argv[0]);
return;
}
*/
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line)
L"c:\\users\\e\\desktop\\mspaint.exe", // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi ) // Pointer to PROCESS_INFORMATION structure
)
{
printf( "CreateProcess failed (%d).\n", GetLastError() );
return;
}

// Wait until child process exits.
WaitForSingleObject( pi.hProcess, INFINITE );

// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
}

但是,此代码以某种方式引发了访问冲突。我可以在不向用户显示控制台的情况下执行 mspaint 吗?

非常感谢。

最佳答案

第二个参数是一个LPTSTR,即指向非常量字符数组的指针。 docs具体说一下:

this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string)

传递字符串文字是一个问题的原因:

The system adds a terminating null character to the command-line string to separate the file name from the arguments. This divides the original string into two strings for internal processing.

这意味着在您的情况下,它尝试修改只读内存,因此崩溃。

关于CreateProcess() 因访问冲突而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53907228/

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