Maison >développement back-end >C++ >Comment obtenir une liste de fichiers dans un répertoire en utilisant C/C++ ?

Comment obtenir une liste de fichiers dans un répertoire en utilisant C/C++ ?

王林
王林avant
2023-09-09 21:41:02863parcourir

Comment obtenir une liste de fichiers dans un répertoire en utilisant C/C++ ?

Le C++ standard ne fournit aucun moyen de le faire. Vous pouvez utiliser la commande système pour initialiser la commande ls comme indiqué ci-dessous -

Exemple

#include<iostream>
int main () {
   char command[50] = "ls -l";
   system(command);
   return 0;
}

Output

Cela donnera la sortie -

-rwxrwxrwx 1 root root  9728 Feb 25 20:51 a.out
-rwxrwxrwx 1 root root   131 Feb 25 20:44 hello.cpp
-rwxrwxrwx 1 root root   243 Sep  7 13:09 hello.py
-rwxrwxrwx 1 root root 33198 Jan  7 11:42 hello.o
drwxrwxrwx 0 root root   512 Oct  1 21:40 hydeout
-rwxrwxrwx 1 root root    42 Oct 21 11:29 my_file.txt
-rwxrwxrwx 1 root root   527 Oct 21 11:29 watch.py

Si vous utilisez Windows, vous pouvez utiliser dir au lieu de ls pour afficher la liste .

Exemple

Vous pouvez utiliser le package direct (https://github.com/dir/ls). com/tronkko/dirent) pour utiliser une API plus flexible. Vous pouvez l'utiliser comme suit pour obtenir la liste des fichiers -

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

using namespace std;
void list_dir(const char *path) {
   struct dirent *entry;
   DIR *dir = opendir(path);
   
   if (dir == NULL) {
      return;
   }
   while ((entry = readdir(dir)) != NULL) {
   cout << entry->d_name << endl;
   }
   closedir(dir);
}
int main() {
   list_dir("/home/username/Documents");
}

output

Cela donnera la sortie -

a.out
hello.cpp
hello.py
hello.o
hydeout
my_file.txt
watch.py

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer
Article précédent:En langage C, littéral octalArticle suivant:En langage C, littéral octal

Articles Liés

Voir plus