TELLATTR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <dos.h>
  3. #include <io.h>
  4. void main(int argc, char *argv[])
  5.  {
  6.    int attributes;
  7.    if ((attributes = _chmod(argv[1], 0)) == -1)
  8.      printf("Error accessing %sn", argv[1]);
  9.    else
  10.      {
  11.          if (attributes & FA_ARCH)
  12.            printf("Archive ");
  13.          if (attributes & FA_DIREC)
  14.            printf("Directory ");
  15.          
  16.          if (attributes & FA_HIDDEN)
  17.            printf("Hidden ");
  18.          
  19.          if (attributes & FA_LABEL)
  20.            printf("Volume label ");
  21.          
  22.          if (attributes & FA_RDONLY)
  23.            printf("Readonly ");
  24.          if (attributes & FA_SYSTEM)
  25.            printf("System ");
  26.      }
  27.  }