0
Concat的LPWSTR我有兩個變量,下面在我的C程序如何在C代碼
PWSTR linkName = L"fileName";
PWSTR targetFile = L"pathName";
我想串像"mklink /j "+linkName+" "+targerFile
即,我想連接上述兩個。
任何人都可以告訴我如何?
Concat的LPWSTR我有兩個變量,下面在我的C程序如何在C代碼
PWSTR linkName = L"fileName";
PWSTR targetFile = L"pathName";
我想串像"mklink /j "+linkName+" "+targerFile
即,我想連接上述兩個。
任何人都可以告訴我如何?
您可以使用wcscat。如果您在使用`C的選項
++',你可以使用[此SO回答(http://stackoverflow.com/questions/15421139/concatenation-of-lpwstr-:訪問此鏈接字符串)。如果您可以選擇使用Win32 API,則可以使用[This SO answer](http://stackoverflow.com/questions/9440768/concatenating-a-string-using-win32-api)。 – 2014-11-08 07:08:45