我的代码应该将文件放在目录中,然后将它们放入字符串数组,然后打印内容。当前在我的Functions.c文件中,它已成功写入正确的数组索引,但是当我写入下一个数组索引时被覆盖。任何帮助表示赞赏。
Main.c
#include "Headers.h"
void main(){
listFiles("C:/Users/me/Documents/testDoc");
//printf("%s",fileArray[0]);
printf("End");
return;
}
Functions.c
#include "Headers.h"
void listFiles(const char *foldername){
struct dirent *dp; //creates object of struct dirent
DIR *dir=opendir(foldername); //creates object of directory
char **fileArray=(char **)calloc(1,sizeof(char *));
if (!dir) //checks to see if directory exsists
return;
int numloops=1;
while ((dp = readdir(dir)) != NULL)//recursivley goes through list
{
printf("%d\n",numloops);
if(numloops==1){
fileArray[0]=dp->d_name; //maps first file to position zero
printf("%s test\n",fileArray[0]);
}
else{
fileArray=realloc(fileArray,numloops*sizeof(char *));
fileArray[numloops-1]=dp->d_name; //maps next file in order to position -1 to make enough memory since array starts at 0
printf("%s test\n",fileArray[numloops-1]);
}
numloops++;
printf("%s original\n", dp->d_name);//maps d_name recursivley
}
// Close directory stream
printf("Value at index 2 %s\n",fileArray[2]);
printf("Value at index 3 %s\n",fileArray[3]);
closedir(dir);
return;
}
Headers.h
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
void listFiles(const char *foldername);
输出
1
. test
. original
2
.. test
.. original
3
Doc 1.txt test
Doc 1.txt original
4
Doc 2.txt test
Doc 2.txt original
5
Doc 3.txt test
Doc 3.txt original
Value at index 2 Doc 3.txt
Value at index 3 Doc 3.txt
End
预期输出
1
. test
. original
2
.. test
.. original
3
Doc 1.txt test
Doc 1.txt original
4
Doc 2.txt test
Doc 2.txt original
5
Doc 3.txt test
Doc 3.txt original
Value at index 2 Doc 1.txt
Value at index 3 Doc 2.txt
End
返回的指针以及结构中的指针可能无效,或者随后在同一目录流上调用
readdir
可能会覆盖结构或存储区域。
[该句子的意思是,readdir()
可以一遍又一遍地返回指向相同结构的指针,这意味着readdir
成员每次都相同。
所以当你这样做
d_name
您使数组中的所有元素都指向完全相同的内存。
解决方案是duplicate字符串fileArray[numloops-1]=dp->d_name;
,例如
d_name
当然,一旦完成,就需要fileArray[numloops-1]=strdup(dp->d_name);
数组中的每个字符串。