std::chrono::file_clock

From cppreference.com
< cpp‎ | chrono
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
file_clock
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
std::chrono::file_clock
Member functions

(provided only if to_utc and from_utc are not provided)

(provided only if to_sys and from_sys are not provided)
 
Defined in header <chrono>
class file_clock;
(since C++20)

std::chrono::file_clock is the clock used for std::filesystem::file_time_type. Its epoch is unspecified.

Member types

Member type Definition
rep signed arithmetic type representing the number of ticks in the clock's duration
period a std::ratio type representing the tick period of the clock, in seconds
duration std::chrono::duration<rep, period>, capable of representing negative durations
time_point std::chrono::time_point<std::chrono::file_clock>

Member constants

constexpr bool is_steady
[static]
true if the time between ticks is always constant, i.e. calls to now() return values that increase monotonically even in case of some external clock adjustment, otherwise false
(public static member constant)

Member functions

file_clock provides exactly one of the following two pairs of static member functions:

  • to_utc and from_utc; or
  • to_sys and from_sys.
[static]
returns a std::chrono::time_point representing the current point in time
(public static member function)
[static] (optional)
converts between file_time and utc_time
(public static member function)
[static] (optional)
converts between file_time and sys_time
(public static member function)