文件操作 - struct_timespec.h
返回文件管理
返回主菜单
删除本文件
文件: /usr/include/bits/types/struct_timespec.h
编辑文件内容
/* NB: Include guard matches what <linux/time.h> uses. */ #ifndef _STRUCT_TIMESPEC #define _STRUCT_TIMESPEC 1 #include <bits/types.h> /* POSIX.1b structure for a time value. This is like a `struct timeval' but has nanoseconds instead of microseconds. */ struct timespec { __time_t tv_sec; /* Seconds. */ __syscall_slong_t tv_nsec; /* Nanoseconds. */ }; #endif
修改文件时间
将文件时间修改为当前时间的前一年
删除文件