是否可以使用字符串变量代替TEXT("\\*.txt")
c++ 中的以下函数?
StringCchCat (szDir, MAX_PATH, TEXT("\\*.txt"));
例子:
string ext = "\\*.pdf";
StringCchCat (szDir, MAX_PATH, ext);
使用 VS C++ 返回编译中的错误:
error C2664: 'StringCchCatW': can not convert parameter 3 from 'std :: string' to 'STRSAFE_LPCWSTR'