我们专注攀枝花网站设计 攀枝花网站制作 攀枝花网站建设
成都网站建设公司服务热线:400-028-6601

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

[Linux文件属性]使用stat函数获得指定文件的属性

#include 
#include 
#include 
#include 
int main(int argc, char *argv[])
{
  int ret;
  struct stat stat_buf;    //定义stat结构体变量
  if(argc != 2)            //检查命令行参数
  {
    printf("请输入正确的文件参数!\n");
    return 0;
  }
  ret = stat(argv[1], &stat_buf);        //获取文件属性
  if(ret == -1)                          //获取文件属性失败
  {
    perror("获取文件属性失败!\n");
    exit(0);
  }
  switch(stat_buf.st_mode & S_IFMT)        
  //判断文件类型,S_IFMT是st_mode中文件类型的屏蔽码
  {
    case S_IFDIR:                        //目录文件
    printf("这是一个目录文件!\n");
    break;
    case S_IFREG:                        //普通文件
    printf("这是一个普通文件!\n");
    break;
  }    
  return 0;
}

当前名称:[Linux文件属性]使用stat函数获得指定文件的属性
文章位置:http://shouzuofang.com/article/ieophp.html

其他资讯