日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

解决Win10下_findnext()异常

發(fā)布時間:2025/7/14 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 解决Win10下_findnext()异常 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

在win10中,使用文件遍歷函數(shù)_findnext會報0xC0000005錯誤
原因:
_findnext()第一個參數(shù)”路徑句柄”,返回的類型為intptr_t(long long),如果定義為long,在win7中是沒有問題,但是在win10中就要改為long long或者intptr_t

下面是示例代碼:
---------------------
原文:https://blog.csdn.net/hemmingway/article/details/73716980?utm_source=copy

/* Get all files in a folder specified by path and store the file names in a vector */ void getAllFiles(string path, vector<string> &files) {long long hFile = 0;//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){files.push_back(p.assign(path).append("\\").append(fileinfo.name));getAllFiles(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);}}

  

轉(zhuǎn)載于:https://www.cnblogs.com/PieDaoChuan/p/9802461.html

總結(jié)

以上是生活随笔為你收集整理的解决Win10下_findnext()异常的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。