std::filesystem::path::root_directory
提供: cppreference.com
<tbody>
</tbody>
path root_directory() const; |
(C++17以上) | |
汎用形式のパスのルートディレクトリを返します。 汎用形式のパスにルートディレクトリが含まれていなければ path() を返します。
引数
(なし)
戻り値
パスのルートディレクトリ。
例外
(なし)
例
Run this code
#include <iostream>
#include <filesystem>
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"
関連項目
| もしあれば、パスのルート名を返します (パブリックメンバ関数) | |
| もしあれば、パスのルートパスを返します (パブリックメンバ関数) |