1

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

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

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);
4

1 回答 1

3

以下程序可以帮助您。 如何在C程序中列出目录中的文件?

之后,一旦显示文件。在显示函数中——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);
}
于 2013-10-01T13:42:06.927 回答