Computer >> Máy Tính >  >> Lập trình >> lập trình C

Làm cách nào để lấy danh sách các tệp trong thư mục bằng C / C ++?

C ++ tiêu chuẩn không cung cấp một cách để làm điều này. Bạn có thể sử dụng lệnh hệ thống để khởi tạo lệnh ls như sau -

Ví dụ

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

Đầu ra

Điều này sẽ cung cấp đầu ra -

-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

Nếu đang sử dụng windows, bạn có thể sử dụng dir thay vì ls để hiển thị danh sách.

Ví dụ

Bạn có thể sử dụng gói trực tiếp (https://github.com/tronkko/dirent) để sử dụng API linh hoạt hơn nhiều. Bạn có thể sử dụng nó như sau để lấy danh sách các tệp -

#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");
}

Đầu ra

Điều này sẽ cung cấp đầu ra -

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