ps:编译环境 qt + mingw32 编译没问题;
换到qt + msvc 2017_64 就出现问题;
报错信息:
Stopped in thread 0 by: Exception at 0x7ffbcfe713ad, code: 0xc0000005: write access violation at: 0xffffffffd587d380, flags=0x0 (first chance).
//获取目录下的所有文件名
void getFiles(string path, vector<string>& files)
{
//文件句柄
long hFile = 0;
//文件信息
struct _finddata_t fileinfo;
string p;
if ((hFile = _findfirst(p.assign(path).append("\\*").c_str(), &fileinfo)) != -1)
{
do
{
//如果是目录,迭代之
//如果不是,加入列表
if ((fileinfo.attrib & _A_SUBDIR))
{
if (strcmp(fileinfo.name, ".") != 0 && strcmp(fileinfo.name, "..") != 0)
getFiles(p.assign(path).append("\\").append(fileinfo.name), files);
}
else
{
files.push_back(p.assign(path).append("\\").append(fileinfo.name));
}
} while (_findnext(hFile, &fileinfo) == 0);
_findclose(hFile);
}
}
应用下面这个函数的时候, 报错上面的错误。折腾了一下午,起初以为是编码格式问题,最后发现是64位编译器,反馈的结构体的值保存的是64位,定义的 long 型hFile 会被截断,对不上了。
所以将long hfile 改为
intptr_t hFile
或者
long long hFIle
|