读取的代码方式如下:
intmain()
{
longfile
struct_finddata_tfind
_chdir("d:\\")
if((file=_findfirst("*.*",&find))==-1L)
{
printf("空白!\n")
exit(0)
}
printf("%s\n",find.name)
while(_findnext(file,&find)==0)
{
printf("%s\n",find.name)
}
_findclose(file)
return0
}
用C语言读取目录中的文件名的方法:
1、如果是在window环境下,可以用一下方法:
使用stdlib.h头文件声明的system()函数,调用系统命令dir,把c:目录下文件列表写入文件dir.txt中
2、使用dirent.h头文件中声明的opendir(),readdir()函数;
3、如果没有dirent.h,可以使用io.h头文件中声明的_findfirst(),_findnext()函数:
http://hi.baidu.com/andywangcn/item/7633efda5517baf9ca0c39c6获得双斜杠路径不包含文件名
TCHAR _szPath[MAX_PATH + 1]={0}
GetModuleFileName(NULL, _szPath, MAX_PATH)
(_tcsrchr(_szPath, _T('\\')))[1] = 0//删除文件名,只获得路径 字串
CString strPath
for (int n=0_szPath[n]n++)
{
if (_szPath[n]!=_T('\\'))
{
strPath +=_szPath[n]
}
else
{
strPath += _T("\\\\")
}
}
MessageBox(strPath)//输出==e:\\program\\Debug\\
//头文件用到 windows.h
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)