FindFirstFile 类型问题
我正在编写一个函数来检查给定文件夹中是否有 jpg 文件。我的尝试如下:
int containsJpgs(String ^path)
{
WIN32_FIND_DATA data;
HANDLE hFind;
hFind = FindFirstFile(path + "*.jpg", &data); // Type error.
if (hFind == INVALID_HANDLE_VALUE)
{
return 0;
}
return 1;
}
如何将 System::String ^
附加到 LPCTSTR
以获取 LPCTSTR
?当我这样做时,上面的代码会起作用吗?或者还有其他问题吗?
I'm writing a function that will check if there's a jpg file in the given folder. My try at this is as follows:
int containsJpgs(String ^path)
{
WIN32_FIND_DATA data;
HANDLE hFind;
hFind = FindFirstFile(path + "*.jpg", &data); // Type error.
if (hFind == INVALID_HANDLE_VALUE)
{
return 0;
}
return 1;
}
How do I append a System::String ^
to a LPCTSTR
to get LPCTSTR
? And will the above code work when I do that, or are there other problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
lstrcat() 怎么样?
编辑:
将 system::string^ 转换为 lpctstr 我发现这个
what about lstrcat()?
EDIT:
to convert system::string^ to lpctstr I found this