Namespaces
Variants

std::experimental::filesystem::path:: root_directory

From cppreference.net
path root_directory ( ) const ;
(ファイルシステム TS)

パスのルートディレクトリを返します。パスにルート名が含まれていない場合、 path ( ) を返します。

目次

変更点: - 「Contents」を「目次」に翻訳 - HTMLタグ、属性、C++関連の用語(Parameters、Return value、Exceptions、Example、See also)は翻訳せずに保持 - 書式と構造は完全に維持

パラメータ

(なし)

戻り値

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

例外

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

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

関連項目

パスにルート名が存在する場合、それを返す
(public member function)
パスにルートパスが存在する場合、それを返す
(public member function)