Linux API - EXT3 文件信息

发布于 2024-08-11 07:31:05 字数 66 浏览 7 评论 0原文

我正在写备份软件。我想以编程方式确定文件自上次以来是否已被修改。 EXT3 文件系统下的文件上是否有标志或类似的东西?

I'm writing backup software. I want to programmatically determine if a file has been modified since last time. Is a flag or something like that on files under the EXT3 filesystem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风铃鹿 2024-08-18 07:31:05

当然。只需对文件调用 stat() 并检查st_mtime 成员:

struct stat {
    /* ... snip ... */
    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 */
};

如果应用程序中有上次备份时的时间戳,则可以直接进行比较。

但请注意,并非所有文件系统都会真正更新修改时间,因为这样做的成本很高。您似乎意识到了这种风险。

Sure. Just call stat() on the file, and inspect the st_mtime member:

struct stat {
    /* ... snip ... */
    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 */
};

If you have in the application a timestamp when the last backup was made, you can compare directly.

Note though that not all filesystems really update the modified time, as doing so is kind of expensive. You seem to be aware of this risk.

星星的軌跡 2024-08-18 07:31:05

我认为您正在寻找 stat()

I think you are looking for stat()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文