I have a file with header time as std::chrono::steady_clock
parameter. The different server will be writing them on the disk. During the usage of file, I will be comparing them to find the latest time.
I am confused with https://en.cppreference.com/w/cpp/chrono/steady_clock
Updates:
Q: Whether the comparison provides me the latest file or not?
Q: Should I use the system_clock instead of steady_clock?