在 运行 程序的 CreateProcess 路径中使用 SHGetKnownFolderPath
Use SHGetKnownFolderPath in path of CreateProcess to run program
我正在尝试使用函数 SHGetKnownFolderPath() 获取用户本地应用程序数据的目录,然后将 PWSTR(wchar_t*)转换为 LPCSTR(const char*)将程序添加到 LPCSTR,以便它可以在 CreateProcess 中使用。
我想出了如何使用 SHGetKnownFolderPath 并使用 printf(%ls%, path) 将路径打印到控制台,并想出了如何使用 CreateProcess 来执行 .exe 文件,但我不知道如何制作PWSTR 转换为 const char* 并将我要执行的程序包含到该 const char* 中。
#include <Windows.h>
#include <fstream>
#include <shlobj_core.h>
#include <string>
#include <KnownFolders.h>
#include <wchar.h>
int main () {
//SHGetKnownFolderPath function
PWSTR path = NULL;
HRESULT path_here = SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, NULL, &path);
//CreateProcess funtion
STARTUPINFO info = { sizeof(info) };
PROCESS_INFORMATION processInfo;
const char* execute = //Want to have path_here plus another folder and an .exe program.
BOOL create = CreateProcess(execute, NULL, NULL, NULL, FALSE, 0, NULL, NULL, &info, &processInfo);
.......................
}
我不会说我对编码了解很多,可能还有一些重要的事情我还不知道。任何帮助将不胜感激。
编辑
我认为如果我展示我代码的其他部分会更有帮助。下面的代码就在我上面写的代码之后:
if (create){
WaitForSingleObject(processInfo.hProcess, INFINITE);
CloseHandle(processInfo.hProcess);
CloseHandle(processInfo.hThread);
}
根本不要转换为 char
。 SHGetKnownFolderPath()
returns 一个 Unicode 字符串。显式使用 CreateProcessW()
以便您可以将 Unicode 字符串传递给它:
#include <Windows.h>
#include <fstream>
#include <shlobj_core.h>
#include <string>
#include <KnownFolders.h>
#include <wchar.h>
int main ()
{
PWSTR path = NULL;
HRESULT hres = SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, NULL, &path);
if (SUCCEEDED(hres))
{
STARTUPINFOW info = { sizeof(STARTUPINFOW) };
PROCESS_INFORMATION processInfo;
std::wstring execute = std::wstring(path) + L"\folder\program.exe";
CoTaskMemFree(path);
BOOL create = CreateProcessW(&execute[0], NULL, NULL, NULL, FALSE, 0, NULL, NULL, &info, &processInfo);
// ...
}
return 0;
}
我正在尝试使用函数 SHGetKnownFolderPath() 获取用户本地应用程序数据的目录,然后将 PWSTR(wchar_t*)转换为 LPCSTR(const char*)将程序添加到 LPCSTR,以便它可以在 CreateProcess 中使用。
我想出了如何使用 SHGetKnownFolderPath 并使用 printf(%ls%, path) 将路径打印到控制台,并想出了如何使用 CreateProcess 来执行 .exe 文件,但我不知道如何制作PWSTR 转换为 const char* 并将我要执行的程序包含到该 const char* 中。
#include <Windows.h>
#include <fstream>
#include <shlobj_core.h>
#include <string>
#include <KnownFolders.h>
#include <wchar.h>
int main () {
//SHGetKnownFolderPath function
PWSTR path = NULL;
HRESULT path_here = SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, NULL, &path);
//CreateProcess funtion
STARTUPINFO info = { sizeof(info) };
PROCESS_INFORMATION processInfo;
const char* execute = //Want to have path_here plus another folder and an .exe program.
BOOL create = CreateProcess(execute, NULL, NULL, NULL, FALSE, 0, NULL, NULL, &info, &processInfo);
.......................
}
我不会说我对编码了解很多,可能还有一些重要的事情我还不知道。任何帮助将不胜感激。
编辑
我认为如果我展示我代码的其他部分会更有帮助。下面的代码就在我上面写的代码之后:
if (create){
WaitForSingleObject(processInfo.hProcess, INFINITE);
CloseHandle(processInfo.hProcess);
CloseHandle(processInfo.hThread);
}
根本不要转换为 char
。 SHGetKnownFolderPath()
returns 一个 Unicode 字符串。显式使用 CreateProcessW()
以便您可以将 Unicode 字符串传递给它:
#include <Windows.h>
#include <fstream>
#include <shlobj_core.h>
#include <string>
#include <KnownFolders.h>
#include <wchar.h>
int main ()
{
PWSTR path = NULL;
HRESULT hres = SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, NULL, &path);
if (SUCCEEDED(hres))
{
STARTUPINFOW info = { sizeof(STARTUPINFOW) };
PROCESS_INFORMATION processInfo;
std::wstring execute = std::wstring(path) + L"\folder\program.exe";
CoTaskMemFree(path);
BOOL create = CreateProcessW(&execute[0], NULL, NULL, NULL, FALSE, 0, NULL, NULL, &info, &processInfo);
// ...
}
return 0;
}