std::chrono::file_clock
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Date and time library
(C++11)
(C++20)
(C++20)
(C++11)
(C++11)
(C++11)
(C++20)
(C++20)
(C++20)
(C++11)
(C++20)
file_clock
(C++20)
(C++20)
(C++20)(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
std::chrono::file_clock
Member functions
(optional*)
(optional*)
Time point I/O
Defined in header
<chrono>
using file_clock = /* see below */;
(since C++20)
std::chrono::file_clock
is an alias for the clock used for std::filesystem::file_time_type . Its epoch is unspecified.
file_clock
meets the TrivialClock requirements.
Time point family
Defined in namespace
std::chrono
template<class Duration>
using file_time = std::chrono::time_point <std::chrono::file_clock, Duration>;
(since C++20)
using file_time = std::chrono::time_point <std::chrono::file_clock, Duration>;
[edit] 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>
[edit] Member constants
constexpr bool is_steady
[static]
(public static member constant)
[edit] Member functions
file_clock
provides exactly one of the following two pairs of static member functions:
-
to_utc
andfrom_utc
; or -
to_sys
andfrom_sys
.
[static]
(public static member function) [edit]