最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c - How do I modify every timestamp of file on unix EXT4? - Stack Overflow

programmeradmin1浏览0评论

I am writing a C program that requires me to change every timestamp of a file (aTime, mTime, cTime, and bTime/crTime) to nanosecond precision.

If I were to do this in terminal, I would run

debugfs -w -R "set_inode_field <[file_inode]> crtime @[time]" [dev_path]
debugfs -w -R "set_inode_field <[file_inode]> crtime_extra [extra]" [dev_path]

But I cannot find a good way to run debugfs in a C program.

I am aware of using utimensat to modify aTime and mTime in code, but do not know of anything for aTime or bTime/crTime.

发布评论

评论列表(0)

  1. 暂无评论