如何在C程序的目录中列出文件?


88

我正在尝试在Linux上编写ftp服务器。在这种情况下,如何通过C程序在终端的目录中列出文件?也许我可以使用exec函数来运行find命令,但是我想将文件名作为字符串发送给客户端程序。我怎样才能做到这一点?

感谢您的回答。

Answers:


175

一个示例,可用于POSIX兼容系统:

/*
 * This program displays the names of all files in the current directory.
 */

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

int main(void) {
  DIR *d;
  struct dirent *dir;
  d = opendir(".");
  if (d) {
    while ((dir = readdir(d)) != NULL) {
      printf("%s\n", dir->d_name);
    }
    closedir(d);
  }
  return(0);
}

请注意,此类操作取决于C中的平台。

来源:http : //faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1046380353&id=1044780608


现在可以,而且非常容易。再次感谢您的答复。
cemal 2010年

13
如果您喜欢它,请对其进行验证;)
Jean-Bernard Jansen 2010年

1
太好了,但是如果我们只想要png文件怎么办?
Farsheed 2014年

2
@Farsheed:试试这个
Fraxtil 2014年

我遇到了一些问题。首先是“。” 和“ ..”出现在每个目录的顶部,尽管它们是“目录”,但它们的dir-> d_type设置为DT_REG。另外,我似乎并没有获取所有文件...某个地方是否有更全面的“目录扫描器”代码?也许一些穷人对“ ls”的实现?我需要在Mac上使用它
-OS

35

JB Jansen的回答中有一个很小的补充-在主readdir()循环中,我要添加以下内容:

  if (dir->d_type == DT_REG)
  {
     printf("%s\n", dir->d_name);
  }

只是检查它是否是真正的文件,而不是(符号)链接,目录或其他内容。

注:更多有关struct direntlibc文件


6
顺便说一句:并非所有平台都可以使用d_type,但Linux和BSD可以使用(我知道这个问题被标记为Linux,只是在答案上稍作扩展);即使那样,并不是所有文件系统都得到统一支持,但是它应该适用于大多数FS。
omn​​inonsense

11

这是一个完整的程序,如何递归列出文件夹的内容:

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

#define NORMAL_COLOR  "\x1B[0m"
#define GREEN  "\x1B[32m"
#define BLUE  "\x1B[34m"



/* let us make a recursive function to print the content of a given folder */

void show_dir_content(char * path)
{
  DIR * d = opendir(path); // open the path
  if(d==NULL) return; // if was not able return
  struct dirent * dir; // for the directory entries
  while ((dir = readdir(d)) != NULL) // if we were able to read somehting from the directory
    {
      if(dir-> d_type != DT_DIR) // if the type is not directory just print it with blue
        printf("%s%s\n",BLUE, dir->d_name);
      else
      if(dir -> d_type == DT_DIR && strcmp(dir->d_name,".")!=0 && strcmp(dir->d_name,"..")!=0 ) // if it is a directory
      {
        printf("%s%s\n",GREEN, dir->d_name); // print its name in green
        char d_path[255]; // here I am using sprintf which is safer than strcat
        sprintf(d_path, "%s/%s", path, dir->d_name);
        show_dir_content(d_path); // recall with the new path
      }
    }
    closedir(d); // finally close the directory
}

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

  printf("%s\n", NORMAL_COLOR);

    show_dir_content(argv[1]);

  printf("%s\n", NORMAL_COLOR);
  return(0);
}

4

下面的代码将仅打印目录中的文件,并在遍历时排除给定目录中的目录。

#include <dirent.h>
#include <stdio.h>
#include <errno.h>
#include <sys/stat.h>
#include<string.h>
int main(void)
{
    DIR *d;
    struct dirent *dir;
    char path[1000]="/home/joy/Downloads";
    d = opendir(path);
    char full_path[1000];
    if (d)
    {
        while ((dir = readdir(d)) != NULL)
        {
            //Condition to check regular file.
            if(dir->d_type==DT_REG){
                full_path[0]='\0';
                strcat(full_path,path);
                strcat(full_path,"/");
                strcat(full_path,dir->d_name);
                printf("%s\n",full_path);
            }
        }
        closedir(d);
    }
    return(0);     
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.