- 论坛徽章:
- 0
|
This is my class "XDir".
- /*
- * =====================================================================================
- *
- * Filename: XDir.cpp
- *
- * Description: class file
- *
- * Version: 1.0
- * Created: 07/22/2006 11:12:51 AM EDT
- * Revision: none
- * Compiler: gcc
- *
- * Author: PH.C.XT (Mn),
- * Company:
- *
- * =====================================================================================
- */
- #include<stdio.h>
- #include<stdlib.h>
- #include "XDir.h"
- #include<queue>
- #include<dirent.h>
- #include<sys/types.h>
- #include<sys/stat.h>
- #include<string.h>
- XDir::XDir(char *path)
- {
- pathname=path;
- //if(*(pathname+strlen(pathname))!='/')
- // *(pathname+strlen(pathname))='/';
- //printf("%s\n",pathname);
- }
- //is dir
- bool XDir::IsDir()
- {
- struct stat statebuf;
- int state;
- if((state=lstat(pathname,&statebuf))<0)
- {
- //fprintf(stdout,"Failed to stat the path name \"%s\" %d\n",pathname,state);
- //perror("stat error");
- return false;
- }
- //while((state=lstat(pathname,statebuf))==-1);
- if(!S_ISDIR(statebuf.st_mode))
- {
- //fprintf(stdout,"Sorry.This %s is not dir.\n",pathname);
- return false;
- }
- //free(statebuf);
- return true;
- }
-
- //scan dir
- bool XDir::ScanDir()
- {
- //to add your code
- queue<XDir*> dirque;
- XDir *dir=new XDir(pathname);
- if(!dir->IsDir())
- return false;
- //dir.pathname=pathname;
- dirque.push(dir);
- printf("Top dir is %s\n\n",dir->pathname);
- while(dirque.size()>0)
- {
- //char *name=(char *)malloc(sizeof(char));
- XDir *tmpdir=(XDir *)dirque.front();
- char **filenames=(char **)malloc(sizeof(char));
- //tmpdir=dirque.front();
- printf("\nCurrent dir is %s\n\n",tmpdir->pathname);
- int i,num;
- if((num=tmpdir->GetFiles(filenames))==-1)
- {
- return false;
- //dirque.pop();
- //continue;
- }
- for(i=0;i<num;i++)
- {
- char fullpath[256]="";
- strcpy(fullpath,tmpdir->pathname);
- fullpath[strlen(fullpath)]='/';
- strcat(fullpath,filenames[i]);
- if(IsDir(fullpath) && strcmp(".",filenames[i])!=0 && strcmp("..",filenames[i])!=0)
- {
- XDir *tmp=new XDir(fullpath);
- //tmp->pathname=fullpath;
- dirque.push(tmp);
- printf("-------\n%s\n-----\n",tmp->pathname);
- }
- //printf("%s\n",fullpath);
- }
- dirque.pop();
- //free(filenames);
- delete tmpdir;
- //tmpdir=NULL;
- }
- //delete dir;
- return true;
- }
- bool XDir::IsDir(char *path)
- {
- struct stat statebuf;
- int state;
- if((state=lstat(path,&statebuf))<0)
- {
- //fprintf(stdout,"Failed to stat the path name \"%s\" %d\n",pathname,state);
- //perror("stat error");
- return false;
- }
- //while((state=lstat(pathname,statebuf))==-1);
- if(!S_ISDIR(statebuf.st_mode))
- {
- //fprintf(stdout,"Sorry.This %s is not dir.\n",pathname);
- return false;
- }
- //free(statebuf);
- return true;
- }
-
- //get files in the dir
- int XDir::GetFiles(char **filenames)
- {
- struct dirent **entries;
- int i,num;
- if((num=scandir(pathname,&entries,0,alphasort))==-1)
- {
- perror("failed to scan dir ");
- return -1;
- }
- for(i=0;i<num;i++)
- {
- *(filenames+i)=(char *)malloc(256);
- strcpy(filenames[i],entries[i]->d_name);
- }
- return num;
- }
复制代码
when I use func "ScanDir" to list a dir, the dir has many files and child dirs. Always errors happen below.
xiaotao@xiaotao-laptop:~/xtl/DirSearch$ ./testdir ~/Astar
Top dir is /home/xiaotao/Astar
Current dir is /home/xiaotao/Astar
-------
/home/xiaotao/Astar/A1
-----
-------
/home/xiaotao/Astar/A2
-----
-------
/home/xiaotao/Astar/A5
-----
Current dir is /home/xiaotao/Astar/pku2380.c~
failed to scan dir : Not a directory |
|