使用 C 计算目录中的文件数量
- 2024-11-14 08:30:00
- admin 原创
- 19
问题描述:
如何在 Linux 平台上使用 C 计算目录中的文件数量。
解决方案 1:
无法保证此代码可以编译,并且它实际上仅与 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);
解决方案 2:
看readdir
。
解决方案 3:
如果您还想包含子目录,则可以使用我在某些代码中使用的这个函数。您可能应该对其进行修改,以包含更多错误检查并支持不同的目录分隔符。
int countfiles(char *path) {
DIR *dir_ptr = NULL;
struct dirent *direntp;
char *npath;
if (!path) return 0;
if( (dir_ptr = opendir(path)) == NULL ) return 0;
int count=0;
while( (direntp = readdir(dir_ptr)))
{
if (strcmp(direntp->d_name,".")==0 ||
strcmp(direntp->d_name,"..")==0) continue;
switch (direntp->d_type) {
case DT_REG:
++count;
break;
case DT_DIR:
npath=malloc(strlen(path)+strlen(direntp->d_name)+2);
sprintf(npath,"%s/%s",path, direntp->d_name);
count += countfiles(npath);
free(npath);
break;
}
}
closedir(dir_ptr);
return count;
}
解决方案 4:
如果您不关心当前目录.
和父目录..
,例如:
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
", 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
", path);
exit( EXIT_FAILURE);
}
printf( "
Found %zu Files
", 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
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD