您的位置:首页 > 运维架构 > Linux

linux平台下基于C语言实现遍历文件目录

2016-08-03 10:04 603 查看
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <time.h>

/* 文件大小和修改时间 */
static int get_file_size_time(const char *filename)
{
struct stat statbuf;

/* 判断未打开文件 */
if(stat(filename,&statbuf)==-1)
{
printf("Get stat on %s Error: %s\n", filename, strerror(errno));
return(-1);
}
if(S_ISDIR(statbuf.st_mode)) // 目录
return(1);
if(S_ISREG(statbuf.st_mode)) // 文件
printf("%s size: %ld bytes\tmodified at %s", filename, statbuf.st_size, ctime(&statbuf.st_mtime));
return(0);
}

int main(int argc,char **argv)
{
DIR *dirp;
struct dirent *direntp;
int stats;

if(argc!=2)
{
printf("Usage: %s filename\n\a", argv[0]);
exit(1);
}

if(((stats=get_file_size_time(argv[1]))==0)||(stats==-1)) // 文件或出现错误
exit(1);

/* 打开目录 */
if((dirp=opendir(argv[1]))==NULL)
{
printf("Open Directory %s Error: %s\n", argv[1], strerror(errno));
exit(1);
}

/* 返回目录中文件大小和修改时间 */
while((direntp=readdir(dirp))!=NULL)
{
/* 给文件或目录名添加路径:argv[1]+"/"+direntp->d_name */
char dirbuf[512];
memset(dirbuf,0,sizeof(dirbuf));
strcpy(dirbuf,argv[1]);
strcat(dirbuf,"/");
strcat(dirbuf,direntp->d_name);

if(get_file_size_time(dirbuf)==-1) break;
}

closedir(dirp);
exit(1);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: