如何在C代码中连接LPWSTR

时间:2014-11-08 06:32:13

标签: c string string-concatenation

我有两个变量如下我的C程序

 PWSTR linkName = L"fileName";
     PWSTR targetFile = L"pathName";

我想要像"mklink /j "+linkName+" "+targerFile这样的字符串,即我想连接上面两个字符串。

任何人都可以告诉我怎么做?

2 个答案:

答案 0 :(得分:1)

我认为你想要像wsprintf

这样的东西

为你的wchar_t分配一个新的缓冲区,它将保存结果

wsprintf(newBuf, "%s%s", linkName, targetFile);

答案 1 :(得分:0)

您可以使用 wcscat 。访问此链接:

http://msdn.microsoft.com/en-us/library/h1x0y282.aspx