Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

ฉันจะรับรายการไฟล์ในไดเร็กทอรีโดยใช้ C/C++ ได้อย่างไร


มาตรฐาน C ++ ไม่มีวิธีการทำเช่นนี้ คุณสามารถใช้คำสั่งระบบเพื่อเริ่มต้นคำสั่ง ls ได้ดังนี้ -

ตัวอย่าง

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

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ -

-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

หากคุณใช้ Windows คุณสามารถใช้ dir แทน ls เพื่อแสดงรายการได้

ตัวอย่าง

คุณสามารถใช้แพ็คเกจโดยตรง (https://github.com/tronkko/dirent) เพื่อใช้ API ที่ยืดหยุ่นกว่ามาก คุณสามารถใช้ได้ดังต่อไปนี้เพื่อรับรายการไฟล์ -

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

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ -

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