linux-文件属性及目录基本操作_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > linux-文件属性及目录基本操作

linux-文件属性及目录基本操作

 2010/9/19 23:30:09  deepfuture  http://deepfuture.javaeye.com  我要评论(0)
  • 摘要:#include<sys/types.h>#include<sys/stat.h>#include<stdio.h>#include<dirent.h>intmain(intargc,char*argv[]){inti;structstatbuf;char*ptr;if(argc<2){printf("filenameerror");exit(1);}if(lstat(argv[1],&buf)<0)
  • 标签:linux 文件属性及目录基本操作

#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <dirent.h>
int main(int argc,char *argv[]){
   int i;
   struct stat buf;
   char *ptr;
   if (argc<2){
       printf("filename error");
       exit(1);
   }
   if (lstat(argv[1],&buf)<0){//lstat和stat 判断文件属性,但lstat只判断连接文件本身,不追踪真实文件
       perror("lstat error");
   }
   if (S_ISREG(buf.st_mode)) ptr="普通文件";
   else if(S_ISDIR(buf.st_mode)) ptr="目录";
   else if(S_ISCHR(buf.st_mode)) ptr="字符设备";
   else if(S_ISFIFO(buf.st_mode)) ptr="有名管道";
   else if(S_ISLNK(buf.st_mode)) ptr="符号链接";
   else if(S_ISBLK(buf.st_mode)) ptr="块设备";
   else if(S_ISSOCK(buf.st_mode)) ptr="SOCKET";
   else ptr="未知设备";
   printf("FILE %s is %s file",argv[1],ptr);
   if (S_ISREG(buf.st_mode)){//如果是文件名
       printf("file size is %d bytes.\n",buf.st_size);
   }
//链接: http://deepfuture.javaeye.com/blog/763368
   if (S_ISDIR(buf.st_mode)){//如果是目录名,则ls目录的文件
       DIR *dp;
       struct dirent *dirp;
       if ((dp=opendir(argv[1]))==NULL) perror("opendir error");
       while ((dirp=readdir(dp))!=NULL){
          printf("%s\n",dirp->d_name);   //输出目录下的文件名
       }
          closedir(dp);
          free(dirp);
   }

   return 0;
}
上一篇: 关于C++引用类型变量 下一篇: 没有下一篇了!
发表评论
用户名: 匿名