我正在尝试接受用户输入,并在CreateProcessW()函数中使用它。简单地说,用户放入应用程序的路径,然后程序将其打开。但它崩溃了。任何帮助。一切都可以编译。
#include <windows.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <processthreadsapi.h>
#include <errno.h>
void delay(unsigned int mseconds)
{
clock_t goal = mseconds + clock();
while (goal > clock());
}
int main(int argc,char *argv[])
{
LPCWSTR drive[2];
printf("\nEnter the drive, do not include '\\' (Ex. C:) : ");
wscanf(L"%s", drive);
LPCWSTR path = L"\\Windows\\notepad.exe";
STARTUPINFOW siStartupInfo;
PROCESS_INFORMATION piProcessInfo;
memset(&siStartupInfo, 0, sizeof(siStartupInfo));
memset(&piProcessInfo, 0, sizeof(piProcessInfo));
siStartupInfo.cb = sizeof(siStartupInfo);
LPCWSTR pPath;
wprintf(L"%ls%ls\n", drive, path);
printf("\nPlease enter the path exact as shown above: ");
wscanf(L"%s", &pPath);
printf("\nNow opening notepad . . . . \n\n");
delay(3000);
if (CreateProcessW(pPath,
NULL,
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&siStartupInfo,
&piProcessInfo))
{
printf("Notepad opened. . .\n\n");
}
else
{
printf("Error = %ld\n", GetLastError());
}
return 0;
}
顺便说一句,大多数代码都是我在网上和此处找到的代码片段。
答案 0 :(得分:0)
LPCWSTR drive[2];
您为两个指针分配空间。
printf("\nEnter the drive, do not include '\\' (Ex. C:) : ");
wscanf(L"%s", drive);
糟糕,您正在告诉wscanf
在分配的空间中存储字符串。但是您只为两个指针分配了空间。
LPCWSTR pPath;
好的,pPath
是还没有指向任何东西的指针。您只有一个指针。
wscanf(L"%s", &pPath);
您应该告诉wscanf
要将输入的字符串存储在哪里。但是您从来没有为字符串分配空间,只是创建了一个指向任何东西的指针。
下面是我可以找到的wscanf
第一个示例中的一些代码:
wchar_t str [80];
int i;
wprintf (L"Enter your family name: ");
wscanf (L"%ls",str);
注意到它如何为80个宽字符数组分配空间,然后告诉wscanf
将输入存储在字符数组中吗?