C 遍历目录

来自泡泡学习笔记
BrainBs讨论 | 贡献2024年9月30日 (一) 19:06的版本 (创建页面,内容为“<pre> #inlcude<io.h> struct _finddata_t FileList; long hFile=0; hFile = _findfirst(path, &FileList); if(-1 == hFile) { return ; } do { //FileList.name } while(0 == _findnext(hFile, &FileList)); _findclose(hFile); </pre>”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索
#inlcude<io.h>
struct _finddata_t FileList;
long hFile=0;

hFile = _findfirst(path, &FileList);
if(-1 == hFile)
{
    return ;
}

do
{
    //FileList.name
}
while(0 == _findnext(hFile, &FileList));

_findclose(hFile);