- filesystem[meta header]
- std::filesystem[meta namespace]
- path[meta class]
- function[meta id-type]
- cpp17[meta cpp]
bool has_parent_path() const;
パスに親パスが含まれているか判定する。
- パスにルートパスのみが含まれていれば、ルートパスの親はルートパスと見なされて
true
が返る - ディレクトリパス (
bar/
) の場合、ディレクトリ内から見た親が自身のディレクトリ (bar
) と見なされ、true
が返る - パスにファイル名、もしくはルート以外のディレクトリのみが含まれ、親パスの情報がない場合は
false
が返る
return !parent_path().empty();
- parent_path()[link parent_path.md]
- empty()[link empty.md]
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path ps[] = {
"/foo/bar.txt", // ファイル名を含むパス
"/foo/bar/", // ディレクトリパス
"/", // ルートパスのみ
"bar/", // ディレクトリパス
"bar" // ファイルパス
};
std::cout << std::boolalpha;
for (const fs::path& p : ps) {
std::cout << p << " : " << p.has_parent_path() << std::endl;
}
}
- has_parent_path()[color ff0000]
"/foo/bar.txt" : true
"/foo/bar/" : true
"/" : true
"bar/" : true
"bar" : false
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path ps[] = {
"C:/foo/bar.txt", // ファイル名を含むパス
"C:/foo/bar/", // ディレクトリパス
"C:/", // ルートパスのみ
"bar/", // ディレクトリパス
"bar" // ファイルパス
};
std::cout << std::boolalpha;
for (const fs::path& p : ps) {
std::cout << p << " : " << p.has_parent_path() << std::endl;
}
}
- has_parent_path()[color ff0000]
"C:/foo/bar.txt" : true
"C:/foo/bar/" : true
"C:/" : true
"bar/" : true
"bar" : false
- C++17
- Clang:
- GCC: 8.1 [mark verified]
- Visual C++: 2017 Update 7 [mark verified]