我在CMD窗口中執行了此命令並且它可以工作。我現在需要在2015年的VC++程序代碼中運行它,但我無法得到它。 我讀過處理這個的各種職位,但他們主要是字符串文字,我有變數。我認爲這是拋開雙引號。如果有更好/更安全的方法,我不必使用_wsystem。在C++中運行CMD行使用變量(不是字符串文字)作爲參數
更新:
std::wstringstream wss;
wss << std::wstring(L"\"") << CPathUtil::get_exe_fullpath() << std::wstring(L"\"") << L" /q /a " << std::wstring(L"\"") + cp.c_str() + std::wstring(L"\"");
const auto command = wss.str();
const auto result = _wsystem(command.c_str());
它仍然沒有從VC++應用程序運行.. command = "C:\Users\Valued Customer\Documents\Visual Studio 2015\Projects\svn_3dg_wc\x64\Debug\MyAppD.exe" /q /a "C:\Users\Valued Customer\Documents\Visual Studio 2015\Projects\svn_3dg_wc\Samples\New folder\C - Copy (2).abc"
如果我從調試器值複製並粘貼到CMD窗口,它的工作原理。
任何想法?