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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>
  3. #include <fcntl.h>
  4. #include <sysstat.h>
  5. #include <time.h>
  6. void main(void)
  7.   {
  8.     int handle;
  9.     struct stat buffer;
  10.     if ((handle = open("\AUTOEXEC.BAT", O_RDONLY)) == -1)
  11.      printf("Error opening \AUTOEXEC.BATn");
  12.     else
  13.       {
  14.         if (fstat(handle, &buffer))
  15.           printf("Error getting file informationn");
  16.         else
  17.           printf("AUTOEXEC.BAT is %ld bytes Last used %sn",
  18.             buffer.st_size, ctime(&buffer.st_atime));
  19.         close(handle);
  20.       }
  21.  }
  22.