- 论坛徽章:
- 0
|
本帖最后由 espace_2009 于 2014-03-18 14:44 编辑
- #include<unistd.h>
- #include<sys/stat.h>
- #include<fcntl.h>
- #include<dirent.h>
- #include<string.h>
- #include<stdio.h>
- #include<stdlib.h>
- typedef struct filelist{
- char *name;
- long int lenth;
- }file_list;
- file_list* scanfile(char *dirname){
- struct dirent **namelist;
- struct stat buf;
- const char *err_string;
- int n;
- n= scandir(dirname,&namelist,0,alphasort); //扫描目录下的文件
- if(n<0)
- perror("error occurred!");
- file_list *flist;
- if(NULL==(flist = (file_list *)malloc(n*sizeof(file_list))))
- perror("malloc failure");
- int filecount = 0;
- int i;
- for(i=0; i < n; i++){
- if(strcmp(namelist[i]->d_name,".") != 0&&strcmp(namelist[i]->d_name,"..") != 0){
- flist[filecount].name = (char *)malloc(128);
- //flist[filecount].name= strdup(dirname);
- strcpy(flist[filecount].name, dirname);
- strcat(flist[filecount].name,namelist[i]->d_name);
- printf("file name: %s \n",flist[filecount].name);
- int fildes ;
- if(-1==(fildes = open(flist[filecount].name,O_RDONLY))) //打开文件
- { perror(err_string);
- exit(-1);
- }
- // stat(flist[filecount].name,&buf);
- flist[filecount].lenth = (int)lseek(fildes,0,SEEK_END); //获取文件长度
- //flist[filecount].lenth=buf.st_size;
- printf("file lenth : %s \n",flist[filecount].lenth);
- close(fildes);
- filecount++; //文件计数+1
- }
- // printf("file count: %d \n",filecount);
- }
- return flist;
- }
- int main(int argc, char **argv){
- file_list *flst;
- // if( argc != 2 ){
- // printf("usage : %s dirname \n", argv[0]);
- // exit(-1);
- // }
- // else
- flst=scanfile("/home/test");
- return 0;
- }
复制代码 上面这段代码视为了扫描一个目录下所有文件,并把文件指针和大小存储到自定义的结构filelist中。调试通过,运行出现段错误
gdb调试错误是
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff7a5ef90 in _IO_vfprintf_internal (s=<optimized out>,
format=<optimized out>, ap=ap@entry=0x7fffffffda1 at vfprintf.c:1655
1655 vfprintf.c: 没有那个文件或目录.
似乎是open打开文件处出现问题了,但又无法确定 求解到底是哪个位置出问题了
添加两个头文件后段错误已经排除 现在只是open函数打开文件,返回值-1 得到的似乎不是正确的文件路径 |
|