std::experimental::filesystem::last_write_time
From cppreference.com
< cpp | experimental | fs
| Defined in header <experimental/filesystem>
|
||
| file_time_type last_write_time( const path& p ); file_time_type last_write_time( const path& p, error_code& ec ) |
(1) | (filesystem TS) |
| void last_write_time( const path& p, file_time_type new_time ); void last_write_time( const path& p, file_time_type new_time, error_code& ec ); |
(2) | (filesystem TS) |
1) Returns the time of the last modification of p, determined as if by accessing the member
st_mtime of the POSIX stat (symlinks are followed).
The non-throwing overload returns file_time_type::min() on errors.Contents |