我有一段代码,我需要在其中使用带有 ifstream::open 和 CreateProcess 的字符串,例如
//in another file
const char* FILENAME = "C:\\...blah blah\\filename.bat";
// in main app
std::ifstream is;
is.open(FILENAME);
// ...do some writing
is.close();
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
std::string cmdLine = "/c " + FILENAME;
if( !CreateProcess( "c:\\Windows\\system32\\cmd.exe",
cmdLine.c_str(), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi) )
{
return GetLastError();
}
CreateProcess 需要一个 LPCWSTR,因此要将字符串与 CreateProcess 一起使用,我需要将文件名和“cmdLine”声明为 std::wstring,但 ifstream::open 不采用宽字符串...我想不出办法解决这个问题。我似乎总是遇到 unicode 与多字节字符串的问题。
有任何想法吗?谢谢。