分类: C/C++
2011-10-26 14:15:08
ENOTDIR 参数path路径中的目录存在但却非真正的目录。
另外 读取一个文件夹里所有文件的方法 还有一个比较原始的,
使用system命令读取文件夹中所有文件名到txt文件,然后从中依次读取文件名
#include
int system() 需要包含stdlib.h 头文件
system("dir /home/lq/桌面/rcgtest/10.24数据分析/AveResult > filename.txt");
将AveResult中的文件读取到filename.txt中 然后可以读取该文件,依次处理文件。
#include
#include
#include
#include
#include
#include
#define MAX_PATH 200
//for linux
void findAllFile(char * pFilePath)
{
DIR * dir;
dirent * ptr;
struct stat stStatBuf;
char *p = NULL;
if(chdir(pFilePath)==-1) /*Can be used via Windows & Linux platform,change current dir. to some dir.*/
{
printf( "Your Inputed Argument %s is Not Valid\n ",pFilePath);
exit(1);
}
dir = opendir(pFilePath);
while ((ptr = readdir(dir)) != NULL)
{
if (stat(ptr-> d_name, &stStatBuf) == -1)
{
printf( "Get the stat error on file:%s\n ", ptr-> d_name);
continue;
}
if ((stStatBuf.st_mode & S_IFDIR) && strcmp(ptr-> d_name, ". ") != 0
&& strcmp(ptr-> d_name, ".. ") != 0)
{
char Path[MAX_PATH];
strcpy(Path, pFilePath);
strncat(Path, "/ ", 1);
strcat(Path, ptr-> d_name);
findAllFile(Path);
}
if (stStatBuf.st_mode & S_IFREG)
{
//printf( " %s\n ", ptr-> d_name);
p = strstr(ptr-> d_name, ".cpp ");//Modified here 06-7-27
if (p != NULL)
printf ( "%s\n ", ptr-> d_name);
}
chdir(pFilePath);
}
closedir(dir);
}
int main(int argc, char* argv[])
{
int runMode=0;
// findAllFile( "/home/lwf/software ");
if(argc <3)
{
findAllFile(argv[1]);
return 0;
}
else
{
printf( "error ");
return 0;
}
}
#include
#include
#include
using namespace std;
static long total=0;
void ListFile(void)
{
HANDLE hSearch;
WIN32_FIND_DATA data;
hSearch=FindFirstFile("*",&data);
do{
if(data.dwFileAttributes==FILE_ATTRIBUTE_DIRECTORY
&&strcmp(data.cFileName,".")
&&strcmp(data.cFileName,"..")){
SetCurrentDirectory(data.cFileName);
ListFile();
SetCurrentDirectory("..");
}
else
if(strcmp(data.cFileName,".")
&&strcmp(data.cFileName,"..")){
cout<
}
}while(FindNextFile(hSearch,&data));
FindClose(hSearch);
}
int main()
{
ListFile();
cout<<"total "<
return 0;
}
#include
#include
FILE *fp;
void findFile(char filePath[])//这个是你要的函数
{
char szFind[MAX_PATH];//这是要找的
WIN32_FIND_DATA FindFileData;
HANDLE hFind;
char szFile[MAX_PATH];
strcpy(szFind,filePath);
strcat(szFind,"\\*.*");//利用通配符找这个目录下的所以文件,包括目录
hFind=FindFirstFile(szFind,&FindFileData);
if(INVALID_HANDLE_VALUE == hFind) return;
while(TRUE)
{
if(FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)//这是目录
{
if(FindFileData.cFileName[0]!='.')//.表示当前目录,因为每个目录下面都有两个默认目录就是..和.分别表示上一级目录和当前目录
{
strcpy(szFile,filePath);
strcat(szFile,"\\");
strcat(szFile,FindFileData.cFileName);
findFile(szFile);//寻找这个目录下面的文件
}
}
else
{
fprintf(stdout,"%s\\%s\n",filePath,FindFileData.cFileName);//打印出目录下的文件的路径和名称
fprintf(fp,"%s\\%s\n",filePath,FindFileData.cFileName);//这将结果存档到c:\\path.txt中。
}
if(!FindNextFile(hFind,&FindFileData))//寻找下一个文件
break;
}
FindClose(hFind);//关闭句柄
}
int main()
{
fp = fopen("C:\\path.txt","w");
findFile("D:\\e-book\\实习\\随笔\\读书ing");//这里是你要遍历的目录,你自己可以改变,它会显示这个目录下的所有文件,包括这个目录下子目录下的文件。
fclose(fp);
return 0;
}
转载链接:http://hi.baidu.com/xiaoguaiyin/blog/item/5a2e9ca1510bf09747106401.html