1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#include <iostream>
#include <filesystem>
#include <chrono>
using namespace std;
using namespace chrono;
using namespace filesystem;
int main()
{
//system_clock::to_sys(system_clock::now()); // not for system_clock
// steady_clock::to_sys(steady_clock::now()); // not for steady_clock
// high_resolution_clock::to_sys( // not for high_res._clock
// high_resolution_clock::now());
file_clock::to_sys(file_clock::now());
//file_clock::to_time_t(file_clock::now()); // not in file_clock
// steady_clock::to_time_t(steady_clock::now());// not in steady_clock
}
|