Opened 13 years ago

Last modified 11 years ago

#3965 assigned Feature Requests

missing functions last_access_time() and last_status_change_time()

Reported by: Sascha Ochsenknecht Owned by: Beman Dawes
Milestone: Boost 1.43.0 Component: filesystem
Version: Boost 1.42.0 Severity: Problem
Keywords: Cc:

Description

In Boost.Filesystem I can find a function:

template <class Path> std::time_t last_write_time(const Path& p);

which is corresponding to st_mtime (last modification time) of the stat structure. Within the stat structure, their are also st_atime and st_ctime defined, but there are no corresponding functions. Is there a special reason for that? Couldn't they be added?

template <class Path> std::time_t last_access_time(const Path& p); template <class Path> std::time_t last_status_change_time(const Path& p);

Cheers, Sascha

Change History (1)

comment:1 by Beman Dawes, 11 years ago

Status: newassigned

This is bubbling up to the top of the pot. See the Boost Developers list thread http://comments.gmane.org/gmane.comp.lib.boost.devel/230214

Thanks,

--Beman

Note: See TracTickets for help on using tickets.