4

我想在给定目录中仅获取 *.txt 文件的名称,如下所示:

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <dirent.h>

int main(int argc, char **argv)
{
    char *dirFilename = "dir";

    DIR *directory = NULL;

    directory = opendir (dirFilename);
    if(directory == NULL)
        return -1;

    struct dirent *ent;

     while ((ent = readdir (directory)) != NULL)
     {
         if(ent->d_name.extension == "txt")
            printf ("%s\n", ent->d_name);
     }

    if(closedir(directory) < 0)
        return -1;

    return 0;
}

我怎样才能在纯unixs c中做到这一点?

4

6 回答 6

10

首先,Unix 没有文件扩展名的概念,extension所以struct dirent. 其次,您不能将字符串与==. 你可以使用类似的东西

bool has_txt_extension(char const *name)
{
    size_t len = strlen(name);
    return len > 4 && strcmp(name + len - 4, ".txt") == 0;
}

> 4部分确保文件名.txt不匹配。

bool从获得<stdbool.h>。)

于 2012-10-19T14:54:22.157 回答
7

您可以glob()为此使用函数调用。使用您最喜欢的搜索引擎、Linux 手册页或此处获取更多信息。

#include <glob.h>
#include <stdio.h>

int main(int argc, char **argv) {
  const char *pattern = "./*.txt";
  glob_t pglob; 

  glob(pattern, GLOB_ERR, NULL, &pglob);      

  printf("Found %d matches\n", pglob.gl_pathc);
  printf("First match: %s\n", pglob.gl_pathv[0]);

  globfree(&pglob);


  return 0;
}
于 2012-10-19T14:51:36.163 回答
2

可能性:

while ((ent = readdir (directory)) != NULL)
{
    const size_t len = strlen(ent->d_name);
    if (len > 4                     &&
        ent->d_name[len - 4] == '.' &&
        ent->d_name[len - 3] == 't' &&
        ent->d_name[len - 2] == 'x' &&
        ent->d_name[len - 1] == 't')
    {
        printf ("%s\n", ent->d_name);
    }
}
于 2012-10-19T14:53:50.993 回答
2

你快到了,你只需要检查文件名是否以.txt. 一种方法是使用strcmp,strcasecmpmemcmp:

while ((ent = readdir (directory)) != NULL)
{
    int len = strlen(ent->d_name);
    if(len > 4 && memcmp(ent->d_name + len - 4, ".txt", 4) == 0)  // only checks lowercase
    {
        // It's a .txt file - now check that it's a regular file
        char filename[PATH_MAX];
        snprintf(filename, sizeof(filename), "%s/%s", dirFilename, ent->d_name);
        struct stat st;
        if(stat(filename, &st) == 0 && S_ISREG(st.st_mode))
        {
            // It's a regular file - process it
        }
    }
}

stat(2)通过调用完整文件路径并使用宏检查st_mode字段来验证它是一个常规文件(而不是目录或其他类型的特殊文件)是一个好主意。S_ISxxx请注意,返回d_type的结构成员并不总是受支持,因此依赖它不是一个好主意。DIRreaddir

或者,您可以使用以下函数,而不是使用opendirreaddir和:closedirglob(3)

glob_t globbuf;
if(glob("/path/to/dir/*.txt", 0, NULL, &globbuf) == 0)
{
  int i;
  for(i = 0; i < globbuf.gl_pathc; i++)
    process_filename(globbuf.gl_pathv[i]);
}
globfree(&globbuf);
于 2012-10-19T14:55:07.187 回答
1

@BartFriedrich 指出了该glob()功能,但他没有给出它的使用示例。非常简短(并且完全未经测试)您可能会尝试这样的事情

#include <glob.h>
#include <stdio.h>

void glob_example() {
    glob_t g;
    int i;
    glob("*.txt", 0, NULL, &g);
    for (i = 0; i < g.gl_pathc) 
        printf("matched: %s\n", g.pathv[i]);
    globfree(&g)
}

glob()实际上是一个相当复杂的功能,对于更一般的文件匹配要求我可能不会使用它,但它确实可以有效地处理您的问题。有关更多信息,请查看man glob您的 linux 机器或在线查看手册页

于 2012-10-19T15:11:18.777 回答
0

你可以写一个endswith函数:

int endswith (const char *name, const char *suffix)

只需通过后缀进行反向循环(从末尾开始)并检查每个字符是否相同。

于 2012-10-19T14:57:01.007 回答