Chinaunix首页 | 论坛 | 博客
  • 博客访问: 417491
  • 博文数量: 121
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1393
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-11 12:17
个人简介

www.vibexie.com vibexie@qq.com

文章分类

全部博文(121)

文章存档

2015年(55)

2014年(66)

我的朋友

分类: C/C++

2014-09-13 15:30:54


点击(此处)折叠或打开

  1. #include "apue.h"

  2. int main(int argc,char *argv[])
  3. {
  4.     int i;
  5.     struct stat buf;
  6.     char *ptr;
  7.     for(i=1;i<argc;i++)
  8.     {
  9.         printf("%s:",argv[i]);
  10.         if(lstat(argv[i],&buf)<0)
  11.         {
  12.             printf("lstat error\n");
  13.             continue;
  14.         }
  15.         if(S_ISREG(buf.st_mode))
  16.             ptr="regular";
  17.         else if(S_ISDIR(buf.st_mode))
  18.             ptr="directory";
  19.         else if(S_ISCHR(buf.st_mode))
  20.             ptr="character special";
  21.         else if(S_ISBLK(buf.st_mode))
  22.             ptr="block special";
  23.         else if(S_ISFIFO(buf.st_mode))
  24.             ptr="block special";
  25.         else if(S_ISLNK(buf.st_mode))
  26.             ptr="symbolic link";
  27.         else if(S_ISSOCK(buf.st_mode))
  28.             ptr="socket";
  29.         else
  30.             ptr="** unknow mode **";
  31.         printf("%s\n",ptr);

  32.     }
  33.     return 0;

  34. }

阅读(1220) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~