如何使用 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 来显示列表。
示例
你可以使用 direct 包(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
广告
数据结构
网络
关系数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP