如何遍历一个目录(文件夹)下的所有文件和文件夹
我想将u盘中的所有文件和文件夹打包成一个文件,问题:
1。如何遍历(找到)u盘中的所有文件和文件夹
2。如何将这些文件和文件夹打包成一个文件
请各位高手不吝赐教
[解决办法]
1. #include 〈direct.h〉
#include 〈io.h〉
......
void CSearchDlg::OnButtonSearch()
{
// TODO: Add your control notification handler code here
char szFilename[80];
// 字符串 szFilename 表示要查找的文件名
strcpy(szFilename,″Mytext.txt″);
_chdir(″d:\\″); // 进入要查找的路径(也可为某一具体的目录)
// 查找文件, 如果查到则显示文件的路径全名
Search_Directory(szFilename);
// 为CSearchDlg类的一成员函数
MessageBox(″查找文件完毕!″);
// 显示查找完毕的信息
}
3.在CSearchDlg类中增加成员函数Search_Directory,它将完成具体的文件查找工作,代码如下:
void CSearchDlg::Search_Directory(char* szFilename)
{
long handle;
struct _finddata_t filestruct;
//表示文件(或目录)的信息
char path_search[_MAX_PATH];
//表示查找到的路径结果
// 开始查找工作, 找到当前目录下的第一个实体(文件或子目录),
// ″*″表示查找任何的文件或子目录, filestruct为查找结果
handle = _findfirst(″*″, &filestruct);
// 如果handle为-1, 表示当前目录为空, 则结束查找而返回
if((handle == -1))
return;
// 检查找到的第一个实体是否是一个目录(filestruct.name为其名称)
if( ::GetFileAttributes(filestruct.name) & FILE—ATTRIBUTE—DIRECTORY )
{
// 如果是目录, 则进入该目录并递归调用函数Search_Dirctory进行查找,
// 注意: 如果目录名的首字符为′.′(即为″.″或″..″), 则不用进行查找
if( filestruct.name[0] != ′.′ )
{
—chdir(filestruct.name);
Search_Directory(szFilename);
// 查找完毕之后, 返回上一级目录
—chdir(″..″);
}
}
else // 如果第一个实体不是目录, 则检查是否是要查找的文件
{
// stricmp对两字符串进行小写形式的对比, 返回为0表示完全一致
if( !stricmp(filestruct.name, szFilename) )
{
// 先获得当前工作目录的全路径
—getcwd(path_search,—MAX—PATH);
// 再获得文件的完整的路径名(包含文件的名称)
strcat(path_search,″\\″);
strcat(path—search,filestruct.name);
MessageBox(path_search); //输出显示
}
}
// 继续对当前目录中的下一个子目录或文件进行与上面同样的查找
while(!(—findnext(handle,&filestruct)))
{
if( ::GetFileAttributes(filestruct.name) & FILE—ATTRIBUTE—DIRECTORY )
{
if(*filestruct.name != ′.′)
{
—chdir(filestruct.name);
Search_Directory(szFilename);
—chdir(″..″);
}
}
else
{
if(!stricmp(filestruct.name,szFilename))
{
—getcwd(path—search,—MAX—PATH);
strcat(path_search,″\\″);
strcat(path_search,filestruct.name);
MessageBox(path_search);
}
}
}
—findclose(handle);
// 最后结束整个查找工作
}
这样我们就可以对整个目录进行遍历搜索,查找某一特定的文件,并输出显示其完整的文件路径。
2.调用winrar程序(命令行查winrar的手册)实现
[解决办法]
调用CFileFind,递归查找
http://blog.csdn.net/ugg/archive/2006/01/25/588368.aspx
[解决办法]
1.CFileFind
2.找个winzip或winrar,winexec调用下就行
[解决办法]
CFileFind
打包调用WinZip.dll