用C扫描计算机文件

时间:2013-10-22 17:45:21

标签: c file directory

我正在研究C中的一个小项目(Just C not ++或#),我想知道是否有任何一种方法可以扫描文件(简单地说出它的名字和/或扩展名) )?

感谢您提供任何帮助。

2 个答案:

答案 0 :(得分:1)

您可以使用此代码读取文件夹的内容(在以下示例中为当前工作示例),该代码将打印所有文件(和文件夹):

#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>

int main (void) {

      DIR *dp;
      struct dirent *ep;
      dp = opendir(".");   // open the current directory
      if (dp != NULL) {
        while ((ep = readdir(dp)) != NULL) {     // read its content one by one
           printf("%s\n", ep->d_name);
      }
      closedir(dp);   // close the handle
     }
      else
      perror("Can not access dir");
return 0;
}

您当然可以在下一步中解析其扩展名的各个文件名。请注意,此示例适用于Linux。

答案 1 :(得分:0)

我在另一个论坛上问了这个问题,几乎马上得到了一个很好的答案。

#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>

int main (void)
{
    DIR *dp;
    struct dirent *ep;     
    dp = opendir ("./");
    const int MAXFILES = 100;
    char list[MAXFILES][256];
    int c = 0;

if (dp != NULL)
    {
        while ((ep = readdir (dp)) && (c < MAXFILES)){
            strcpy(list[c],ep->d_name);
            ++c;
        }

(void) closedir (dp);
    }
    else
        perror ("Couldn't open the directory");

return 0;
}