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 content if needed.
That's why I'm wondering if there is a way to get a file's last modified time in C++.
stat
call? – Vierra