std::experimental::filesystem::path::stem

From cppreference.com
< cpp‎ | experimental‎ | fs‎ | path
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals TS v2)
Library fundamentals 3 (library fundamentals TS v3)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Extensions for concurrency 2 (concurrency TS v2)
Concepts (concepts TS)
Ranges (ranges TS)
Reflection (reflection TS)
Mathematical special functions (special functions TR)
 
 
 
path stem() const;
(filesystem TS)

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

May throw implementation-defined exceptions.

Example

#include <experimental/filesystem>
#include <iostream>
namespace fs = std::experimental::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)