我正在尝试用c编写一个程序,它接受一个目录并通过目录中的文件循环。我计划对文件进行一些处理,并以新名称重新保存。我使用dirent结构来获取目录内容,但是当我尝试从dirent中获取FILE *时出现问题。
1 #include <unistd.h>
2 #include <sys/types.h>
3 #include <dirent.h>
4 #include <stdio.h>
5 #include <string.h>
6 #include <sys/fcntl.h>
7 #include <stdlib.h>
8 #include <sys/stat.h>
9 #include <errno.h>
13 char parentName[256];
14
15 void listdir(const char *name, int level)
16 {
17 DIR *dir;
18 struct dirent *entry;
19
20 if (!(dir = opendir(name)))
21 return;
22 if (!(entry = readdir(dir))){
23 closedir(dir);
24 return;
25 }
26
27 do {
28 if (entry->d_type == DT_DIR) {
29 printf("Don't give me a directory!!");
30 }
31 else{
32 FILE *thisFile;
33 if(!(thisFile = fopen(entry->d_name, "r"))){
34 printf("Error");
35 }
36 struct stat buf0;
37 fstat(fileno(thisFile), &buf0);
38 off_t size = buf0.st_size;
39 printf("size = %d\n",(int) size);
40 printf("Made it here first");
41 char *buf1 = (char*) malloc(101);
42 printf("Made it here");
43 fgets(buf1,100,thisFile);
55 printf("%s",buf1);
56 }
57 } while ((entry = readdir(dir)));
58 closedir(dir);
59 }
60
61 int main(int argc, char* argv[])
62 {
63 if (argc == 0) listdir(".", 0);
64 else listdir((char*)argv[1],0);
65 return 0;
66 }
程序输出
尺寸= 12292
分段错误:11
如果我删除第39行,那只是段错误。 (此外,该大小不接近文件的大小,以字节,字符或单词。)请帮助,谢谢!
:)
编辑:包括#includes
答案 0 :(得分:2)
我看到三个问题:
argc
是1而不是0。因此,请将main()
更改为:
if (argc == 1) listdir(".", 0);
当fopen()
失败时,您仍尝试处理该文件。添加else
或continue
循环:
if(!(thisFile = fopen(entry->d_name, "r"))){
printf("Error");
continue;
}
您有内存泄漏。您分配buf1
,但永远不会free()
。