怎么用C语言编程遍历文件夹下所有文件名

如题所述

     
  /**************************************************   
        è¿™æ˜¯CBrowseDir的类定义文件   BrowseDir.h     
     
  /**************************************************   
  #include   "stdlib.h"   
     
  class   CBrowseDir   
  {   
  protected:   
  //存放初始目录的绝对路径,以'\'结尾   
  char   m_szInitDir[_MAX_PATH];   
     
  public:   
  //缺省构造器   
  CBrowseDir();   
     
  //设置初始目录为dir,如果返回false,表示目录不可用   
  bool   SetInitDir(const   char   *dir);   
     
  //开始遍历初始目录及其子目录下由filespec指定类型的文件   
  //filespec可以使用通配符   *   ?,不能包含路径。   
  //如果返回false,表示遍历过程被用户中止   
  bool   BeginBrowse(const   char   *filespec);   
     
  protected:   
  //遍历目录dir下由filespec指定的文件   
  //对于子目录,采用迭代的方法   
  //如果返回false,表示中止遍历文件   
  bool   BrowseDir(const   char   *dir,const   char   *filespec);   
     
  //函数BrowseDir每找到一个文件,就调用ProcessFile   
  //并把文件名作为参数传递过去   
  //如果返回false,表示中止遍历文件   
  //用户可以覆写该函数,加入自己的处理代码   
  virtual   bool   ProcessFile(const   char   *filename);   
     
  //函数BrowseDir每进入一个目录,就调用ProcessDir   
  //并把正在处理的目录名及上一级目录名作为参数传递过去   
  //如果正在处理的是初始目录,则parentdir=NULL   
  //用户可以覆写该函数,加入自己的处理代码   
  //比如用户可以在这里统计子目录的个数   
  virtual   void   ProcessDir(const   char     
  *currentdir,const   char   *parentdir);   
  };   
     
     
  /*********************************************/   
     
  è¿™æ˜¯CBrowseDir的类实现文件   BrowseDir.cpp   
     
  /***********************************************/   
  #include   "stdlib.h"   
  #include   "direct.h"   
  #include   "string.h"   
  #include   "io.h"   
     
  #include   "browsedir.h"   
     
  CBrowseDir::CBrowseDir()   
  {   
  //用当前目录初始化m_szInitDir   
  getcwd(m_szInitDir,_MAX_PATH);   
     
  //如果目录的最后一个字母不是'\',则在最后加上一个'\'   
  int   len=strlen(m_szInitDir);   
  if   (m_szInitDir[len-1]   !=   '\\')   
  strcat(m_szInitDir,"\\");   
  }   
     
  bool   CBrowseDir::SetInitDir(const   char   *dir)   
  {   
  //先把dir转换为绝对路径   
  if   (_fullpath(m_szInitDir,dir,_MAX_PATH)   ==   NULL)   
  return   false;   
     
  //判断目录是否存在   
  if   (_chdir(m_szInitDir)   !=   0)   
  return   false;   
     
  //如果目录的最后一个字母不是'\',则在最后加上一个'\'   
  int   len=strlen(m_szInitDir);   
  if   (m_szInitDir[len-1]   !=   '\\')   
  strcat(m_szInitDir,"\\");   
     
  return   true;   
  }   
     
  bool   CBrowseDir::BeginBrowse(const   char   *filespec)   
  {   
  ProcessDir(m_szInitDir,NULL);   
  return   BrowseDir(m_szInitDir,filespec);   
  }   
     
  bool   CBrowseDir::BrowseDir   
  (const   char   *dir,const   char   *filespec)   
  {   
  _chdir(dir);   
     
  //首先查找dir中符合要求的文件   
  long   hFile;   
  _finddata_t   fileinfo;   
  if   ((hFile=_findfirst(filespec,&fileinfo))   !=   -1)   
  {   
  do   
  {   
  //检查是不是目录   
  //如果不是,则进行处理   
  if   (!(fileinfo.attrib   &   _A_SUBDIR))   
  {   
  char   filename[_MAX_PATH];   
  strcpy(filename,dir);   
  strcat(filename,fileinfo.name);   
  if   (!ProcessFile(filename))   
  return   false;   
  }   
  }   while   (_findnext(hFile,&fileinfo)   ==   0);   
  _findclose(hFile);   
  }   
     
  //查找dir中的子目录   
  //因为在处理dir中的文件时,派生类的ProcessFile有可能改变了   
  //当前目录,因此还要重新设置当前目录为dir。   
  //执行过_findfirst后,可能系统记录下了相关信息,因此改变目录   
  //对_findnext没有影响。   
  _chdir(dir);   
  if   ((hFile=_findfirst("*.*",&fileinfo))   !=   -1)   
  {   
  do   
  {   
  //检查是不是目录   
  //如果是,再检查是不是   .   æˆ–   ..     
  //如果不是,进行迭代   
  if   ((fileinfo.attrib   &   _A_SUBDIR))   
  {   
  if   (strcmp(fileinfo.name,".")   !=   0   &&   strcmp   
  (fileinfo.name,"..")   !=   0)   
  {   
  char   subdir[_MAX_PATH];   
  strcpy(subdir,dir);   
  strcat(subdir,fileinfo.name);   
  strcat(subdir,"\\");   
  ProcessDir(subdir,dir);   
  if   (!BrowseDir(subdir,filespec))   
  return   false;   
  }   
  }   
      }   while   (_findnext(hFile,&fileinfo)   ==   0);   
  _findclose(hFile);   
  }   
  return   true;   
  }   
     
  bool   CBrowseDir::ProcessFile(const   char   *filename)   
  {   
  return   true;   
  }   
     
  void   CBrowseDir::ProcessDir(const   char     
  *currentdir,const   char   *parentdir)   
  {   
  }   
     
     
  /*************************************************   
  è¿™æ˜¯ä¾‹å­example.cpp     
         
  /*************************************************   
  #include   "stdio.h"   
     
  #include   "BrowseDir.h"   
     
  //从CBrowseDir派生出的子类,用来统计目录中的文件及子目录个数   
  class   CStatDir:public   CBrowseDir   
  {   
  protected:   
  int   m_nFileCount;       //保存文件个数   
  int   m_nSubdirCount;   //保存子目录个数   
     
  public:   
  //缺省构造器   
  CStatDir()   
  {   
  //初始化数据成员m_nFileCount和m_nSubdirCount   
  m_nFileCount=m_nSubdirCount=0;   
  }   
     
  //返回文件个数   
  int   GetFileCount()   
  {   
  return   m_nFileCount;   
  }   
     
  //返回子目录个数   
  int   GetSubdirCount()   
  {   
  //因为进入初始目录时,也会调用函数ProcessDir,   
  //所以减1后才是真正的子目录个数。   
  return   m_nSubdirCount-1;   
  }   
     
  protected:   
  //覆写虚函数ProcessFile,每调用一次,文件个数加1   
  virtual   bool   ProcessFile(const   char   *filename)   
  {   
  m_nFileCount++;   
  return   CBrowseDir::ProcessFile(filename);   
  }   
     
  //覆写虚函数ProcessDir,每调用一次,子目录个数加1   
  virtual   void   ProcessDir   
  (const   char   *currentdir,const   char   *parentdir)   
  {   
  m_nSubdirCount++;   
  CBrowseDir::ProcessDir(currentdir,parentdir);   
  }   
  };   
     
  void   main()   
  {   
  //获取目录名   
  char   buf[256];   
  printf("请输入要统计的目录名:");   
  gets(buf);   
     
  //构造类对象   
  CStatDir   statdir;   
     
  //设置要遍历的目录   
  if   (!statdir.SetInitDir(buf))   
  {   
  puts("目录不存在。");   
  return;   
  }   
     
  //开始遍历   
  statdir.BeginBrowse("*.*");   
     
  //统计结果中,子目录个数不含   .   åŠ   ..   
  printf("文件总数:   %d\n子目录总数:     
  %d\n",statdir.GetFileCount(),   
  statdir.GetSubdirCount());   
  }
温馨提示:内容为网友见解,仅供参考
第1个回答  2017-05-24
运行结果为树形输出方式。
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstdio>
#include <stack>

#include <windows.h>

using namespace std;

/*
* 遍历lpszPath下所有文件及文件夹,并按顺序显示其中的内容.
*/
/*
* 如果扫描到文件夹,则将其存入 Dirs 队列中,并显示名称,
* 如果扫描到文件,则显示其名称;
* 当前文件夹处理完毕后就处理其下一级文件夹,下一级文件夹从队
* 列中得到.
*/

void function( LPCTSTR lpszPath,ostream & out)
{
//开始查找;
stack<TCHAR*> Dirs;
stack<int> DirDepth;

TCHAR *tmp=new TCHAR[lstrlen(lpszPath)+1];
lstrcpy(tmp,lpszPath);

if(tmp[lstrlen(tmp)-1]=='\\')
tmp[lstrlen(tmp)-1]='\0';

TCHAR szFind[MAX_PATH*2];
TCHAR szFile[MAX_PATH*2];
TCHAR *curdir;
int curdepth=1; //当前文件夹的深度

Dirs.push(tmp);
DirDepth.push(curdepth);

for(;!Dirs.empty();)
{
curdir=Dirs.top();
curdepth=DirDepth.top();
Dirs.pop();
DirDepth.pop();

lstrcpy(szFind,curdir);
lstrcat(szFind, "\\*.*"); // 找所有文件
WIN32_FIND_DATA wfd;

HANDLE hFind = FindFirstFile(szFind, &wfd);

if (hFind != INVALID_HANDLE_VALUE) // 如果找到
{
if (curdepth >1)
out<<" ";
for(int i=1;i<curdepth-1;++i)
out<<'|'<<" ";
out<<'+'<<curdir<<endl;

do
{

if (wfd.cFileName[0] == '.')
continue; // 过滤"." ".." 这两个目录

if (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
wsprintf(szFile, "%s\\%s", curdir, wfd.cFileName);

//function(szFile); // 如果找到的是目录,则进入此目录进行递归
TCHAR* tmp=new TCHAR[lstrlen(szFile)+2];
lstrcpy(tmp,szFile);
Dirs.push(tmp);
DirDepth.push(curdepth+1);
}
else
{
//输出文件名
out<<" ";
for(int i=1;i<curdepth;++i)
out<<'|'<<" ";
out<<wfd.cFileName<<endl;
}
} while (FindNextFile(hFind, &wfd));

}// if

delete [] curdir;

FindClose(hFind); // 关闭查找句柄

}// for()
}

int main(int argc,char *argv[])
{
ofstream fout("遍历结果.txt");
if(argc<=1)
{
cerr<<endl<<"文件夹遍历,请输入路径:";
TCHAR path[MAX_PATH];
cin>>path;
function(path,fout);
}
else
{
function(argv[1],fout);
}

return 0;
}

怎么用c语言实现遍历某目录或文件夹里的所有文件(所有类型
实现遍历目录或文件夹里的所有文件在C语言中并非标准库直接支持的操作。然而,对于不同的操作系统,可以采用不同的方法来实现这一功能。对于Windows系统,可以使用FindFirstFile、FindNextFile和FindClose这三个API来实现遍历动作。具体用法请参考MSDN文档。以下是使用Visual Studio 2019编译的示例代码,采用了多...

c#实现遍历文件夹里的所有文件内容,然后删除某个内容?
C是一个通用的计算机编程语言创建的丹尼斯·里奇在1972年贝尔实验室。它是一种程序性和低级语言,提供对系统内存的访问。C是一个成千上万的计算机编程语言用来创建列表的指令。今天仍然非常广泛使用和影响力。有许多资源网上学习C语言,比如learn-c.org提供了一个免费互动教程。

在windows下 怎么用c语言遍历文件夹?要用纯c的
1、操作系统中有相关的API函数,可以读取目录中所有的文件名字,以及时间属性信息,把这些信息读出来,直接依次遍历即可。2、例程:include"stdio.h"#include"io.h"int main(){ struct _finddata_t files; int File_Handle; int i=0; File_Handle = _findfirst("c:\/temp\/*.txt",&files); if(...

怎样使用C语言列出某个目录下的文件?
&data ); \/\/ 查找文件名与正则表达式chRE的匹配第一个文件 if ( hnd < 0 ) { perror( path ); } int nRet = (hnd <0 ) ? -1 : 1;

用C语言编出遍历出某个目录以及其子目录下所有以TXT为扩展名的文本文件...
include "StdAfx.h"#include "FindFile.h"\/\/这里只是测试函数\/\/一般我们遍历文件都是有目的 同这个写类似病毒一些东西void Test(WIN32_FIND_DATA *fd){ MessageBox(0,fd->cFileName,0,0);}BOOL FindFile(char *pFileName, char * FindFileType){ WIN32_FIND_DATA fd; HANDLE hFind...

如何用C语言清空特定文件夹中的所有文件
如果想简单 就直接调用系统命令 比如 windows下 system("delete xxxx\\\\*");Linux下 system("rm xxxx\/*")如果想用纯C接口 先opendir 然后循环遍历readdir 依次调用remove 函数删除文件。

请问如何用c语言实现遍历查找磁盘下的exe文件? 我是在VC6.0平台下
如果要显示所有子文件夹里的文件名, 加 选项 \/S 例如 DIR C:\\*.exe \/B \/S 如果要把显示 转向到文件 DIR C:\\*.exe \/B \/S >> abc.lis DOS 命令 可以用 sprintf 做成,用 system() 让它执行。程序如下:include <stdio.h> include <stdlib.h> main(){ char cmd[80];char d;for...

C语言遍历所有文件的函数!
\/\/--- 获得文件属性 --- \/\/--- int ConfirmFileAttrib(char* filename){ int temp=0;int attrib=(_rtl_chmod(filename,0));if(attrib==-1){ switch(errno){ case ENOENT:\/\/printf("%s Path or file not found.\\n",filename);temp=0;break;case...

c语言中怎样才能读出文件中的所有字符
用fread函数 可以整块读取。用fgets函数 可以整行读取 用fgetc函数,可以单个字符读取。根据需求,使用对应函数,同时配合循环 就可以读取整个文件了。比如 如果fp为文件指针。那么 int c;while((c = fgetc(fp)) != EOF);这样就可以遍历整个文件了。

C语言如何实现遍历文件夹下的所有txt文件并在文件中搜索字符串_百度知 ...
用 FINDFile和FindNextFile可以遍历整个文件夹,然后取出文件名判断是否txt,再打开文件读取内容进行查找。

相似回答