命名空间
变体
操作

std::filesystem::path::replace_extension

来自 cppreference.cn
< cpp‎ | filesystem‎ | path
 
 
 
 
path& replace_extension( const path& replacement = path() );
(C++17 起)

替换扩展名,使用 replacement 指定的扩展名;若使用 replacement 的默认值则移除扩展名。

首先,若此路径拥有 extension(),则从路径名的通用格式视图中移除它。

然后,若 replacement 非空且不以点字符开头,则在路径名的通用格式视图后追加一个点字符。

然后,如同通过 operator+=(replacement) 般,追加 replacement

目录

[编辑] 参数

replacement - 用于替换的扩展名

[编辑] 返回值

*this

[编辑] 异常

可能抛出实现定义的异常。

[编辑] 注意

replacement 的类型是 std::filesystem::path,尽管它不意图表示文件系统上的对象,以正确处理文件系统字符编码。

[编辑] 示例

#include <filesystem>
#include <iomanip>
#include <iostream>
#include <utility>
 
int main()
{
    const int width1{18}, width2{11}; // columns' width
 
    std::cout << std::left << std::setw(width1) << "Path:"
              << std::setw(width2) << "Ext:" << "Result:\n";
    for (const auto& [p, e] : {
            std::make_pair("/foo/bar.jpg", ".png"),
            {"/foo/bar.jpg", "png"},
            {"/foo/bar.jpg", "."},
            {"/foo/bar.jpg", ""},
            {"/foo/bar.", "png"},
            {"/foo/bar", ".png"},
            {"/foo/bar", "png"},
            {"/foo/bar", "."},
            {"/foo/bar", ""},
            {"/foo/.", ".png"},
            {"/foo/.", "png"},
            {"/foo/.", "."},
            {"/foo/.", ""},
            {"/foo/", ".png"},
            {"/foo/", "png"}})
    {
        std::filesystem::path path{p}, ext{e};
        std::cout << std::setw(width1) << path << std::setw(width2) << ext;
        path.replace_extension(ext);
        std::cout << path << '\n';
    }
}

输出

Path:             Ext:       Result:
"/foo/bar.jpg"    ".png"     "/foo/bar.png"
"/foo/bar.jpg"    "png"      "/foo/bar.png"
"/foo/bar.jpg"    "."        "/foo/bar."
"/foo/bar.jpg"    ""         "/foo/bar"
"/foo/bar."       "png"      "/foo/bar.png"
"/foo/bar"        ".png"     "/foo/bar.png"
"/foo/bar"        "png"      "/foo/bar.png"
"/foo/bar"        "."        "/foo/bar."
"/foo/bar"        ""         "/foo/bar"
"/foo/."          ".png"     "/foo/..png"
"/foo/."          "png"      "/foo/..png"
"/foo/."          "."        "/foo/.."
"/foo/."          ""         "/foo/."
"/foo/"           ".png"     "/foo/.png"
"/foo/"           "png"      "/foo/.png"

[编辑] 参阅

返回文件扩展名路径组件
(公共成员函数) [编辑]
返回文件名路径组件
(公共成员函数) [编辑]
返回主文件名路径组件(不带最终扩展名的文件名)
(公共成员函数) [编辑]
检查相应路径元素是否不为空
(公开成员函数)