std::filesystem::path::stem

std::filesystem::path::stem

path stem() const;
(since C++17)

Returns the filename identified by the path stripped of its extension.

Returns the substring from the beginning of filename() up to and not including the last period (.) character.

If the filename is one of the special filesystem components dot or dot-dot, or if it has no periods, the function returns the entire filename().

Parameters

(none).

Return value

The stem of the filename identified by the path.

Exceptions

(none).

Example

#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
 
int main()
{
    std::cout << fs::path("/foo/bar.txt").stem() << '\n'
              << fs::path("/foo/.bar").stem() << '\n';
 
    for (fs::path p = "foo.bar.baz.tar"; !p.extension().empty(); p = p.stem())
        std::cout << p.extension() << '\n';
}

Output:

"bar"
""
".tar"
".baz"
".bar"

See also

returns the filename path component
(public member function)
returns the file extension path component
(public member function)

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部