I am having a wstring and I need to convert the string to LPWSTR array
wstring pathStr = L"C:/abc/xyz/example.txt";
LPWSTR path[260];
I need to assign the wstring variable "pathStr" to LPWSTR array.
I am having a wstring and I need to convert the string to LPWSTR array
wstring pathStr = L"C:/abc/xyz/example.txt";
LPWSTR path[260];
I need to assign the wstring variable "pathStr" to LPWSTR array.