非VC下如何获取文件名列表

using namespace std;


int main()
{
_finddata_t file;
long lf;
if((lf = _findfirst("C:\\WINDOWS\\*.*", &file))==-1l)
cout<<"文件没有找到";
else
{
cout<<"文件列表"<<endl;
while(_findnext(lf,&file)==0)
{
cout << file.name <<endl;
}
}
_findclose(lf);
getchar();
return 0;
}

你可能感兴趣的:(非VC下如何获取文件名列表)