我们在Win32Api中具有StringCchCat函数,


  将一个字符串连接到另一个字符串。目的地的大小
  该函数提供了缓冲区,以确保StringCchCat
  不要在此缓冲区的末尾写入。


好吧..

StringCchCat(dirWPath, MAX_PATH, TEXT("\\*"));


我会得到:dirWPath +“ \\ *”

我寻找一个:“ \\ *” + dirWPath

有人有解决方案吗?

最佳答案

您可以先通过通配符:

char str1[MAX_PATH] = "\\*";
StringCchCat(str1, MAX_PATH, dirWPath);

07-26 07:42