Find last modified date of file
Hi Is it possible by using boost to find the last modified date of a file? I looked in filesystem, but could not find it there. Thanks Thor Andreas
On Tue, Mar 24, 2009 at 10:25 AM, Thor Andreas Tangen
Is it possible by using boost to find the last modified date of a file? I looked in filesystem, but could not find it there.
http://www.boost.org/doc/libs/1_38_0/libs/filesystem/doc/reference.html#Attr... Look at the function: template <class Path> std::time_t last_write_time(const Path& p); HTH, Christopher
boost::filesystem::last_write_time(const path & p); Thor Andreas Tangen wrote:
Hi
Is it possible by using boost to find the last modified date of a file? I looked in filesystem, but could not find it there.
Thanks Thor Andreas _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (3)
-
Christopher Currie
-
Mika Heiskanen
-
Thor Andreas Tangen