获取文件名列表并使用C将它们存储在linux上的数组中

时间:2013-10-01 13:12:31

标签: c linux list filenames glob

有没有办法在目录中查找给定模式的某些文件名,并将这些名称(可能在数组中)存储在Linux上的C中?

我试过了一个但我不知道除了打印出来之外如何保存名称..

glob_t g;
g.gl_offs = 2;
glob("*.c", GLOB_DOOFFS | GLOB_APPEND, NULL, &g);
g.gl_pathv[0] = "ls";
g.gl_pathv[1] = "-l";
execvp("ls", g.gl_pathv);

1 个答案:

答案 0 :(得分:3)

以下程序可以为您提供帮助。 How to list files in a directory in a C program?

之后,一旦显示文件。在显示功能中 - printf - 复制数组中的文件名。我猜文件名大小有限制。所以可以是数组的最大大小。如果你想保存内存,那么你可以使用realloc并可以创建确切数量的字符数组。

这是获取数据的快捷方式。

#include <dirent.h>
#include <stdio.h>

char name[256][256];

int main(void)
{
  DIR           *d;
  struct dirent *dir;
  int count = 0;
  int index = 0;
  d = opendir(".");
  if (d)
  {
    while ((dir = readdir(d)) != NULL)
    {
      printf("%s\n", dir->d_name);
      strcpy(name[count],dir->d_name);
      count++;
    }

    closedir(d);
  }

  while( count > 0 )
  {
      printf("The directory list is %s\r\n",name[index]);
      index++;
      count--;
  }

  return(0);
}