如何在Linux平臺上使用C計算目錄中的文件數量。使用C計算目錄中文件的數量C
12
A
回答
32
不能保證此代碼編譯,它真的只與Linux和BSD系統兼容:
#include <dirent.h>
...
int file_count = 0;
DIR * dirp;
struct dirent * entry;
dirp = opendir("path"); /* There should be error handling after this */
while ((entry = readdir(dirp)) != NULL) {
if (entry->d_type == DT_REG) { /* If the entry is a regular file */
file_count++;
}
}
closedir(dirp);
6
參見readdir
。
-2
如果你不關心當前目錄.
和這樣的人的父目錄..
:
drwxr-xr-x 3 michi michi 4096 Dec 21 15:54 .
drwx------ 30 michi michi 12288 Jan 3 10:23 ..
你可以做這樣的事情:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
int main (void){
size_t count = 0;
struct dirent *res;
struct stat sb;
const char *path = "/home/michi/";
if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)){
DIR *folder = opendir (path);
if (access (path, F_OK) != -1){
if (folder){
while ((res = readdir (folder))){
if (strcmp(res->d_name, ".") && strcmp(res->d_name, "..")){
printf("%zu) - %s\n", count + 1, res->d_name);
count++;
}
}
closedir (folder);
}else{
perror ("Could not open the directory");
exit(EXIT_FAILURE);
}
}
}else{
printf("The %s it cannot be opened or is not a directory\n", path);
exit(EXIT_FAILURE);
}
printf("\n\tFound %zu Files\n", count);
}
輸出:
1) - .gnome2
2) - .linuxmint
3) - .xsession-errors
4) - .nano
5) - .kde
6) - .xsession-errors.old
7) - .gnome2_private
8) - Public
9) - .gconf
10) - .bashrc
11) - .macromedia
12) - .thunderbird
13) - Pictures
14) - .profile
15) - .cinnamon
16) - .pki
17) - Compile
18) - Desktop
19) - .Private
20) - .cache
21) - .Xauthority
22) - .ICEauthority
23) - VirtualBox VMs
24) - .bash_history
25) - .mozilla
26) - .local
27) - .config
28) - .codeblocks
29) - Documents
30) - .bash_logout
31) - Videos
32) - Templates
33) - Downloads
34) - .adobe
35) - .gphoto
36) - Music
37) - .dbus
38) - .ecryptfs
39) - .sudo_as_admin_successful
40) - .gnome
Found 40 Files
相關問題
- 1. 使用JavaScript/nodejs計算目錄中的文件數量?
- 2. 計算一個文件夾中的目錄數C++ windows
- 3. C++文件/目錄統計與變量
- 4. 計算C文本文件中完整基因的數量C
- 5. 使用VBS計算.c文件中#defines的數量
- 6. 計算c中某個特定目錄下文件夾內的文件數
- 7. 使用c#計算Zip文件中的文件數
- 8. 使用Python瀏覽目錄和計算目錄中的文件
- 9. 使用dirent不能再次運行,計算C中目錄中文件的數量。
- 10. 計算文件中的行數 - C
- 11. 計算文件中的字符數C#
- 12. 使用C#計算PDF文檔中的減號數目
- 13. C++ - 加載所有文件名+計算當前目錄中文件的數量+篩選文件擴展名
- 14. 計數的文件與目錄和子目錄C++
- 15. 計算目錄中文件的數量python
- 16. Android - 計算服務器目錄中文件的數量
- 17. 你如何計算文件中的整數數量? (C++)
- 18. 如何使用Python計算目錄中的文件數
- 19. 使用c計算文件中的新行c
- 20. treeview的計算機目錄c#
- 21. 如何計算使用C++的文件中的行數?
- 22. 使用C++從目錄和子目錄返回矢量中的文件
- 23. 計算在C++頭文件中定義的方法數量
- 24. C++ - 計算文件中元音的數量
- 25. 如何使用C來計算文件中的字節數?
- 26. C++使用類來計算文件中的行數
- 27. 計算郵件數目標C
- 28. 如何計算使用bash的路徑中的目錄數量?
- 29. C/C++大量計算
- 30. 計算目錄中的文件
如果要處理子目錄中的文件,可以在遇到目錄條目時遞歸。確保排除「。」和「..」,如果你這樣做。 – 2009-07-13 19:07:27
抓住dirent包括好工作。 – 2009-07-13 19:09:44