Namespaces
Variants

std::filesystem::path:: root_directory

From cppreference.net
path root_directory ( ) const ;
(C++17以降)

ジェネリック形式のパスのルートディレクトリを返します。パス(ジェネリック形式)がルートディレクトリを含まない場合、 path ( ) を返します。

目次

パラメータ

(なし)

戻り値

パスのルートディレクトリ。

例外

実装定義の例外をスローする可能性があります。

#include <filesystem>
#include <iostream>
namespace fs = std::filesystem;
int main()
{
    fs::path p = fs::current_path();
    std::cout << "The current path " << p << " decomposes into:\n"
              << "root name " << p.root_name() << '\n'
              << "root directory " << p.root_directory() << '\n'
              << "relative path " << p.relative_path() << '\n';
}

出力例:

The current path "C:\Users\abcdef\Local Settings\temp" decomposes into:
root name "C:"
root directory "\"
relative path "Users\abcdef\Local Settings\temp"

関連項目

パスにルート名が存在する場合、それを返す
(公開メンバ関数)
パスにルートパスが存在する場合、それを返す
(公開メンバ関数)