std::filesystem::path::replace_extension

std::filesystem::path::replace_extension

path& replace_extension( const path& replacement = path() );
(1) (since C++17)

Replaces the extension with replacement or removes it when the default value of replacement is used.

Firstly, if this path has an extension(), it is removed.

Then, a dot character is appended if replacement is not empty or does not begin with a dot character.

Then replacement is appended to the path.

Parameters

replacement - the extension to replace with

Return value

*this.

Exceptions

(none).

Example

#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
 
int main()
{
    fs::path p = "/foo/bar.jpeg";
    std::cout << "Was: " << p << '\n';
    p.replace_extension(".jpg");
    std::cout << "Now: " << p.replace_extension(".jpg") << '\n';
}

Output:

Was: "/foo/bar.jpeg"
Now: "/foo/bar.jpg"

See also

returns the file extension path component
(public member function)
returns the filename path component
(public member function)
returns the stem path component
(public member function)
checks if the corresponding path element is not empty
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/path/replace_extension

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部