ファイルの最終変更時刻は、std::filesystem ライブラリの std::filesystem::last_write_time 関数を使用して C++ で取得できます。この関数は std::chrono::file_time_type オブジェクトを返します。さらなる処理または出力を処理するための time_t タイプ。
C++ を使用してファイルの最終変更時刻を取得する方法
C++ では、std::filesystem
ライブラリを使用してファイルとディレクトリに関するさまざまな情報を取得できます。ファイルの最終変更時刻も含まれます。 std::filesystem
库来获取文件和目录的各种信息,包括文件最后修改时间。
头文件
#include <filesystem>
获取文件最后修改时间
使用 std::filesystem::last_write_time
函数可以获取文件最后修改的时间,返回一个 std::chrono::file_time_type
对象。我们可以使用 std::chrono::system_clock::to_time_t
函数将该时间转换为 time_t
类型,从而可以轻松地输出或进行其他处理。
std::filesystem::path file_path("my_file.txt"); auto last_write_time = std::filesystem::last_write_time(file_path); time_t time = std::chrono::system_clock::to_time_t(last_write_time); std::cout << "Last modification time: " << std::ctime(&time) << std::endl;
实战案例
假设我们有一个名为 myfile.txt
的文件,其路径为 c:my_foldermyfile.txt
ヘッダー ファイル
🎜std::filesystem::path file_path("c:/my_folder/myfile.txt"); auto last_write_time = std::filesystem::last_write_time(file_path); time_t time = std::chrono::system_clock::to_time_t(last_write_time); std::cout << "Last modification time: " << std::ctime(&time) << std::endl;🎜🎜ファイルの最終変更時刻を取得します🎜🎜🎜
std::filesystem::last_write_time
関数を使用して、ファイルの最終変更時刻を取得し、 std::chrono::file_time_type
オブジェクト。 std::chrono::system_lock::to_time_t
関数を使用して、この時間を time_t
型に変換し、簡単に出力またはその他の方法で処理できるようにすることができます。 🎜Last modification time: Thu Jul 21 18:09:35 2023🎜🎜実際的なケース🎜🎜🎜
myfile.txt
という名前のファイルがあり、そのパスが c:my_foldermyfile.txt
であると仮定します。次のコードを使用して、ファイルの最終変更時刻を取得できます: 🎜rrreee🎜出力は次のようになります: 🎜rrreee以上がC++を使用してファイルの最終変更時刻を取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。