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?
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?