AUTOINFO.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:
界面编程
开发平台:
C/C++
- #include <stdio.h>
- #include <io.h>
- #include <fcntl.h>
- #include <sysstat.h>
- #include <time.h>
- void main(void)
- {
- int handle;
- struct stat buffer;
- if ((handle = open("\AUTOEXEC.BAT", O_RDONLY)) == -1)
- printf("Error opening \AUTOEXEC.BATn");
- else
- {
- if (fstat(handle, &buffer))
- printf("Error getting file informationn");
- else
- printf("AUTOEXEC.BAT is %ld bytes Last used %sn",
- buffer.st_size, ctime(&buffer.st_atime));
- close(handle);
- }
- }