gpt4 book ai didi

c - 读取文件夹或目录中的所有文件

转载 作者:行者123 更新时间:2023-11-30 19:48:44 25 4
gpt4 key购买 nike

嘿,我是编程新手..我有一个代码,其中我读取目录中的文件..我可以单独读取它们,但我需要给出一个目录或文件夹名称,并能够读取该目录中的所有文件或提到的文件夹。请帮我解决这个问题

    int main(int argc, char **argv)
{

char rid[15];
char buffer[100];
char a[100];
char b[100];
DIR *h;
struct dirent *dir;
h = opendir(".");
if (h)
{
while ((dir = readdir(h)) != NULL)
{
FILE *file = fopen (dir->d_name , "r" );
printf("%s\n", dir->d_name);
}

closedir(h);
}
char c[100];

char d[100];
char temp[250]="";

char *token;
int comchk = 0;
int lino ;.
char ch[20],
ch1[20];
char value[250],
value1[250],
value2[250],
value3[250];
char query[250]="";
int i;
static const char filename[10];
MYSQL *con = mysql_init(NULL);
if (con == NULL)
{
fprintf(stderr, "%s\n", mysql_error(con));
exit(1);
}
if (mysql_real_connect(con, "localhost", "madhu", "cmmacsgps", "rinex", 0, 0) == NULL)

{

finish_with_error(con);

}
if (mysql_query(con, "INSERT INTO rinex1 VALUES('','no','no','no','no','no','no','no','no','no','no','no','no')"))
{
finish_with_error(con);


}

int nrid = mysql_insert_id(con);
sprintf(rid, "%d", nrid);
printf("enter filename\n");
scanf("%s",filename);
FILE *file = fopen ( filename, "r" );
if ( file != NULL )
{
char line [250]; /* or other suitable maximum line size */
char line1 [250];
char *token1;
char *token2;
int tabno=0;

while ( fgets ( line, sizeof line, file ) != NULL ) /* read a line */
{
lino =lino+1;
strcpy(line1,line);

substring(60, 80, line1, a, sizeof a);
substring(0, 60, line1, b, sizeof b);
strcpy(c,a);
}
fclose ( file );
}
mysql_close(con);

exit(0);

}`

`

最佳答案

如果在Windows下实现只需阅读使用dirent.h

http://pubs.opengroup.org/onlinepubs/007908799/xsh/dirent.h.html

您需要检查 readdir 函数并检查示例。使用它来获取文件的名称,然后为每个文件应用其余的过程,

关于c - 读取文件夹或目录中的所有文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17273135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com