当前位置: 技术问答>linux和unix
请教stat函数时间转换
来源: 互联网 发布时间:2016-05-25
本文导语: 现调用stat函数取出文件的相关时间 stat("filename",&file) 得到的时间为 file.st_mtime = 1237779431 如何将后面的整型数据转换为年月日那种格式? 望不吝赐教。 stat 结构如下 struct stat { dev_t st_dev; /*...
现调用stat函数取出文件的相关时间
stat("filename",&file)
得到的时间为
file.st_mtime = 1237779431
如何将后面的整型数据转换为年月日那种格式?
望不吝赐教。
stat 结构如下
struct stat {
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection 文件类型和许可权限*/
nlink_t st_nlink; /* number of hard links 硬链接数*/
uid_t st_uid; /* user ID of owner 用户所有者的ID*/
gid_t st_gid; /* group ID of owner 所属组的ID*/
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes 所占的字节数*/
blksize_t st_blksize; /* blocksize for filesystem I/O */
blkcnt_t st_blocks; /* number of blocks allocated */
time_t st_atime; /* time of last access 文件最后访问时间*/
time_t st_mtime; /* time of last modification文件最后修改时间*/
time_t st_ctime; /* time of last status change 文件属性最后改变时间*/
};
stat("filename",&file)
得到的时间为
file.st_mtime = 1237779431
如何将后面的整型数据转换为年月日那种格式?
望不吝赐教。
stat 结构如下
struct stat {
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection 文件类型和许可权限*/
nlink_t st_nlink; /* number of hard links 硬链接数*/
uid_t st_uid; /* user ID of owner 用户所有者的ID*/
gid_t st_gid; /* group ID of owner 所属组的ID*/
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes 所占的字节数*/
blksize_t st_blksize; /* blocksize for filesystem I/O */
blkcnt_t st_blocks; /* number of blocks allocated */
time_t st_atime; /* time of last access 文件最后访问时间*/
time_t st_mtime; /* time of last modification文件最后修改时间*/
time_t st_ctime; /* time of last status change 文件属性最后改变时间*/
};
|
我比較懶于寫和文件操作相關的demo代碼,樓主看看這個吧...
http://www.cnblogs.com/xiaoliyu/archive/2009/02/25/1397723.html
http://www.cnblogs.com/xiaoliyu/archive/2009/02/25/1397723.html
|
客氣了,呵呵 ^_^