当前位置:首页 » 知网查重 » c遍历文件目录文件

c遍历文件目录文件

发布时间: 2021-03-24 11:02:41

㈠ C语言 遍历目录

兄弟,这不是三言两语说得清楚的,给个邮箱,明天给你个VC2003下的例子给你,使用C及API。现在下班了。

/////////////////////////////////////////////////

不好意思,今天多事做,现在给你传过去,请到邮箱查收。
这个示例的作用是遍历C盘和D盘的文件和目录,同时保存到EXE目录下的dir.txt中。程序最后调用记事本打开这个txt,如果你的C盘和D盘上的文件多的话比较耗时一点。

请使用VC编译,最好是VC2003。

新建一个控制台程序的工程,并选择“空工程”,然后把这个C文件加到源文件下就可以了。

给你送过去的是C文件和我这里编译的EXE文件,放心,不是病毒。

参与一下吧,代码我自己写的,可能写得比较烂一点。

只要有兴趣,什么都可以学会。一起研究。

2007.04.18 11:45PM

哦,还补充一下:TXT里的内容是按递归顺序写入去的,所以看起来会比较乱,其实最佳的方法是把搜索到的内容输入到一个树状控件(TreeView)中。

㈡ C语言:如何遍历指定的文件夹(可以包括子文件夹)中的每一个文件名

Function SearchFiles(Path As String, FileType As String)
Dim Files() As String '文件路径
Dim Folder() As String '文件夹路径
Dim a, b, c As Long
Dim sPath As String

sPath = Dir(Path & FileType) '查找第一个文件

Do While Len(sPath) '循环到没有文件为止
a = a + 1
ReDim Preserve Files(1 To a)
Files(a) = Path & sPath '将文件目录和文件名组合,并存放到数组中
List1.AddItem Files(a) '加入list控件中
sPath = Dir '查找下一个文件
DoEvents '让出控制权
Loop

sPath = Dir(Path & "\", vbDirectory) '查找第一个文件夹

Do While Len(sPath) '循环到没有文件夹为止
If Left(sPath, 1) <> "." Then '为了防止重复查找
If GetAttr(Path & "\" & sPath) And vbDirectory Then '如果是文件夹则。。。。。。
b = b + 1
ReDim Preserve Folder(1 To b)
Folder(b) = Path & sPath & "\" '将目录和文件夹名称组合形成新的目录,并存放到数组中
End If
End If
sPath = Dir '查找下一个文件夹
DoEvents '让出控制权
Loop

For c = 1 To b '使用递归方法,遍历所有目录
SearchFiles Folder(c), FileType
Next

End Function

Private Sub Command1_Click() '调用
SearchFiles "e:\", "*.exe"
End Sub

㈢ C语言如何实现遍历文件夹下的所有txt文件并在文件中搜索字符串

用 FINDFile和FindNextFile可以遍历整个文件夹,然后取出文件名判断是否txt,再打开文件读取内容进行查找。

㈣ windows下使用C/C++怎么遍历目录并读取目录下的文件列表

用C的函数实现,windows ,linux 都能用

#include<iostream>
#include<io.h>
#include<string>
usingnamespacestd;
voiddir(stringpath)
{
longhFile=0;
struct_finddata_tfileInfo;
stringpathName,exdName;
//\*代表要遍历所有的类型
if((hFile=_findfirst(pathName.assign(path).append("\*").c_str(),&fileInfo))==-1){
return;
}
do
{
//判断文件的属性是文件夹还是文件
cout<<fileInfo.name<<(fileInfo.attrib&_A_SUBDIR?"[folder]":"[file]")<<endl;
}while(_findnext(hFile,&fileInfo)==0);
_findclose(hFile);
return;
}
intmain()
{
//要遍历的目录
stringpath="E:\work\\test4";
dir(path);
system("pause");
return0;
}

㈤ 遍历给定目录下的所有文件 c

Dim MyFile As String,sPath As String
sPath="c:\windows"
MyFile = Dir(sPath, vbDirectory Or vbHidden Or vbSystem Or vbReadOnly)
Do While MyFile <> ""
If (GetAttr(sPath & MyFile) And vbDirectory) = vbDirectory Then
List1.AddItem MyFile
Else
List2.AddItem MyFile
End If
MyFile = Dir
Loop
Debug.Print "共计:" & List1.ListCount & "个目录 " & List2.ListCount & "个文件"

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


/**************************************************
这是CBrowseDir的类定义文件BrowseDir.h

/**************************************************
#include"stdlib.h"

classCBrowseDir
{
protected:
//存放初始目录的绝对路径,以''结尾
charm_szInitDir[_MAX_PATH];

public:
//缺省构造器
CBrowseDir();

//设置初始目录为dir,如果返回false,表示目录不可用
boolSetInitDir(constchar*dir);

//开始遍历初始目录及其子目录下由filespec指定类型的文件
//filespec可以使用通配符*?,不能包含路径。
//如果返回false,表示遍历过程被用户中止
boolBeginBrowse(constchar*filespec);

protected:
//遍历目录dir下由filespec指定的文件
//对于子目录,采用迭代的方法
//如果返回false,表示中止遍历文件
boolBrowseDir(constchar*dir,constchar*filespec);

//函数BrowseDir每找到一个文件,就调用ProcessFile
//并把文件名作为参数传递过去
//如果返回false,表示中止遍历文件
//用户可以覆写该函数,加入自己的处理代码
virtualboolProcessFile(constchar*filename);

//函数BrowseDir每进入一个目录,就调用ProcessDir
//并把正在处理的目录名及上一级目录名作为参数传递过去
//如果正在处理的是初始目录,则parentdir=NULL
//用户可以覆写该函数,加入自己的处理代码
//比如用户可以在这里统计子目录的个数
virtualvoidProcessDir(constchar
*currentdir,constchar*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);

//如果目录的最后一个字母不是'',则在最后加上一个''
intlen=strlen(m_szInitDir);
if(m_szInitDir[len-1]!='\')
strcat(m_szInitDir,"\");
}

boolCBrowseDir::SetInitDir(constchar*dir)
{
//先把dir转换为绝对路径
if(_fullpath(m_szInitDir,dir,_MAX_PATH)==NULL)
returnfalse;

//判断目录是否存在
if(_chdir(m_szInitDir)!=0)
returnfalse;

//如果目录的最后一个字母不是'',则在最后加上一个''
intlen=strlen(m_szInitDir);
if(m_szInitDir[len-1]!='\')
strcat(m_szInitDir,"\");

returntrue;
}

boolCBrowseDir::BeginBrowse(constchar*filespec)
{
ProcessDir(m_szInitDir,NULL);
returnBrowseDir(m_szInitDir,filespec);
}

boolCBrowseDir::BrowseDir
(constchar*dir,constchar*filespec)
{
_chdir(dir);

//首先查找dir中符合要求的文件
longhFile;
_finddata_tfileinfo;
if((hFile=_findfirst(filespec,&fileinfo))!=-1)
{
do
{
//检查是不是目录
//如果不是,则进行处理
if(!(fileinfo.attrib&_A_SUBDIR))
{
charfilename[_MAX_PATH];
strcpy(filename,dir);
strcat(filename,fileinfo.name);
if(!ProcessFile(filename))
returnfalse;
}
}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)
{
charsubdir[_MAX_PATH];
strcpy(subdir,dir);
strcat(subdir,fileinfo.name);
strcat(subdir,"\");
ProcessDir(subdir,dir);
if(!BrowseDir(subdir,filespec))
returnfalse;
}
}
}while(_findnext(hFile,&fileinfo)==0);
_findclose(hFile);
}
returntrue;
}

boolCBrowseDir::ProcessFile(constchar*filename)
{
returntrue;
}

voidCBrowseDir::ProcessDir(constchar
*currentdir,constchar*parentdir)
{
}


/*************************************************
这是例子example.cpp

/*************************************************
#include"stdio.h"

#include"BrowseDir.h"

//从CBrowseDir派生出的子类,用来统计目录中的文件及子目录个数
classCStatDir:publicCBrowseDir
{
protected:
intm_nFileCount;//保存文件个数
intm_nSubdirCount;//保存子目录个数

public:
//缺省构造器
CStatDir()
{
//初始化数据成员m_nFileCount和m_nSubdirCount
m_nFileCount=m_nSubdirCount=0;
}

//返回文件个数
intGetFileCount()
{
returnm_nFileCount;
}

//返回子目录个数
intGetSubdirCount()
{
//因为进入初始目录时,也会调用函数ProcessDir,
//所以减1后才是真正的子目录个数。
returnm_nSubdirCount-1;
}

protected:
//覆写虚函数ProcessFile,每调用一次,文件个数加1
virtualboolProcessFile(constchar*filename)
{
m_nFileCount++;
returnCBrowseDir::ProcessFile(filename);
}

//覆写虚函数ProcessDir,每调用一次,子目录个数加1
virtualvoidProcessDir
(constchar*currentdir,constchar*parentdir)
{
m_nSubdirCount++;
CBrowseDir::ProcessDir(currentdir,parentdir);
}
};

voidmain()
{
//获取目录名
charbuf[256];
printf("请输入要统计的目录名:");
gets(buf);

//构造类对象
CStatDirstatdir;

//设置要遍历的目录
if(!statdir.SetInitDir(buf))
{
puts("目录不存在。");
return;
}

//开始遍历
statdir.BeginBrowse("*.*");

//统计结果中,子目录个数不含.及..
printf("文件总数:%d 子目录总数:
%d ",statdir.GetFileCount(),
statdir.GetSubdirCount());
}

㈦ C语言遍历文件目录

//没调试,简单写了下

int text()
{
DIR *pd = NULL;
struct dirent *ptr = NULL;

//打开目录,pd为该目录句柄
if ( (pd = opendir("d:/")) == NULL)
{
puts("open failed");
return -1;
}

//遍历目录
while ( (ptr = readdir(pd)) != NULL)
{
//输出目录下文件名
puts(ptr->d_name);
}

return 0;
}

㈧ C语言,遍历程序目录下txt文件,每查到一个把文件名和目前个数传给函

1、操作系统中有相关的API函数,可以读取目录中所有的文件名字,以及时间属性信息,把这些信息读出来,直接依次遍历即可。2、例程:#include"stdio.h"#include"io.h"intmain(){struct_finddata_tfiles;intFile_Handle;inti=0;File_Handle=_findfirst("c:/temp/*.txt",&files);if(File_Handle==-1){printf("error\n");return0;}do{printf("%s\n",files.name);i++;}while(0==_findnext(File_Handle,&files));_findclose(File_Handle);printf("Find%dfiles\n",i);return0;}

㈨ windows 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(File_Handle==-1)
{
printf("error\n");
return 0;
}
do
{
printf("%s \n",files.name);
i++;
}while(0==_findnext(File_Handle,&files));
_findclose(File_Handle);
printf("Find %d files\n",i);
return 0;
}

热点内容
涂鸦论文 发布:2021-03-31 13:04:48 浏览:698
手机数据库应用 发布:2021-03-31 13:04:28 浏览:353
版面217 发布:2021-03-31 13:04:18 浏览:587
知网不查的资源 发布:2021-03-31 13:03:43 浏览:713
基金赎回参考 发布:2021-03-31 13:02:08 浏览:489
悬疑故事范文 发布:2021-03-31 13:02:07 浏览:87
做简单的自我介绍范文 发布:2021-03-31 13:01:48 浏览:537
战略地图参考 发布:2021-03-31 13:01:09 浏览:463
收支模板 发布:2021-03-31 13:00:43 浏览:17
电气学术会议 发布:2021-03-31 13:00:32 浏览:731