C++ How to check the last modified time of a file

后端 未结 6 783
别跟我提以往
别跟我提以往 2021-02-12 16:35

I\'m caching some information from a file and I want to be able to check periodically if the file\'s content has been modified so that I can read the file again to get the new c

6条回答
  •  无人及你
    2021-02-12 17:25

    You can use boost's last_write_time for that. Boost is cross platform.

    Here's the tutorial link for that.

    Boost has the advantage that it works for all kinds of file names, so it takes care of non-ASCII file names.

提交回复
热议问题