命名空间
变体
操作

std::filesystem::last_write_time

来自 cppreference.com
 
 
 
定义在头文件 <filesystem>
(1) (自 C++17 起)
std::filesystem::file_time_type last_write_time( const std::filesystem::path& p,
                                                 std::error_code& ec ) noexcept;
(2) (自 C++17 起)
void last_write_time( const std::filesystem::path& p,
                      std::filesystem::file_time_type new_time );
(3) (自 C++17 起)
void last_write_time( const std::filesystem::path& p,

                      std::filesystem::file_time_type new_time,

                      std::error_code& ec ) noexcept;
(4) (自 C++17 起)
1,2) 返回 p 最后修改的时间,确定方式类似于访问 POSIX stat 的成员 st_mtime(会跟踪符号链接)。非抛出重载在错误时返回 file_time_type::min()
3,4) 更改 p 最后修改的时间,类似于 POSIX futimens(会跟踪符号链接)。

内容

[编辑] 参数

p - 要检查或修改的路径
new_time - 新的修改时间
ec - 非抛出重载中用于错误报告的输出参数

[编辑] 返回值

1,2) p 最后修改的时间。
3,4)(无)

[编辑] 异常

任何未标记 noexcept 的重载在内存分配失败时可能会抛出 std::bad_alloc

1,3) 在底层操作系统 API 错误时抛出 std::filesystem::filesystem_error,使用 p 作为第一个路径参数,并将操作系统错误代码作为错误代码参数。
2,4) 如果操作系统 API 调用失败,则将 std::error_code& 参数设置为操作系统 API 错误代码,如果未发生错误,则执行 ec.clear()

[编辑] 备注

不能保证在设置写入时间后,由 (1,2) 返回的值与传递给 (3,4) 的参数相同,因为文件系统的计时可能比 filesystem::file_time_type 更精细。

[编辑] 示例

#include <chrono>
#include <filesystem>
#include <format>
#include <fstream>
#include <iostream>
 
using namespace std::chrono_literals;
 
int main()
{
    auto p = std::filesystem::temp_directory_path() / "example.bin";
    std::ofstream{p.c_str()}.put('a'); // create file
 
    std::filesystem::file_time_type ftime = std::filesystem::last_write_time(p);
    std::cout << std::format("File write time is {}\n", ftime);
 
    // move file write time 1 hour to the future
    std::filesystem::last_write_time(p, ftime + 1h);
 
    // read back from the filesystem
    ftime = std::filesystem::last_write_time(p);
    std::cout << std::format("File write time is {}\n", ftime);
 
    std::filesystem::remove(p);
}

可能的输出

File write time is 2023-09-04 19:33:24.702639224
File write time is 2023-09-04 20:33:24.702639224

[编辑] 另请参阅

表示文件时间值
(typedef) [编辑]
获取目录项所指文件最后数据修改的时间
(std::filesystem::directory_entry 的公共成员函数) [编辑]