Reputation: 485
I have two variables as below In my C program
PWSTR linkName = L"fileName";
PWSTR targetFile = L"pathName";
I want string like "mklink /j "+linkName+" "+targerFile
i.e., I want to concatenate the above two.
Can any one tell me how?
Upvotes: 0
Views: 972
Reputation: 64
You can use wcscat. Visit this link:
http://msdn.microsoft.com/en-us/library/h1x0y282.aspx
Upvotes: 0