Chinaunix首页 | 论坛 | 博客
  • 博客访问: 690728
  • 博文数量: 148
  • 博客积分: 4086
  • 博客等级: 上校
  • 技术积分: 1766
  • 用 户 组: 普通用户
  • 注册时间: 2009-12-06 23:27
文章分类

全部博文(148)

文章存档

2013年(19)

2012年(9)

2011年(106)

2009年(14)

分类: WINDOWS

2012-09-04 16:26:49

经测试有效。

#include
#include
using namespace std;

//获取指定目录下的文件列表
/* strDir=D:\\t0506\\ */
BOOL getfilelist(CString strSourceDir, CString fileListPath)
{
//保存文件列表
CString strFileList = "";

//要查找的目录
strSourceDir = strSourceDir + "*.*";

_finddata_t file;
long longf;

if((longf = _findfirst(strSourceDir, &file))==-1l)
{
return FALSE;
}
else
{
string tempName;

while( _findnext(longf, &file ) == 0)
{
tempName = "";
tempName = file.name;
if (tempName == "..")
{
continue;
}

//保存文件名
strFileList.Insert(strFileList.GetLength(),file.name);
strFileList.Insert(strFileList.GetLength(), "\r\n");
}
}

_findclose(longf);

CFile txtFile; //文件列表写TXT文件
txtFile.Open(fileListPath,CFile::modeCreate|CFile::modeWrite);
txtFile.Write(strFileList,strFileList.GetLength());
txtFile.Close();

return TRUE;
}

//测试获取文件列表的函数.在工程目录下会自动生成list.txt。
void CTrdDlg::OnButton1()
{
getfilelist("D:\\t0506\\", "list.txt");
}

阅读(6590) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~