- filesystem[meta header]
- std::filesystem[meta namespace]
- path[meta class]
- function[meta id-type]
- cpp17[meta cpp]
bool empty() const noexcept; // C++17
[[nodiscard]] bool empty() const noexcept; // C++20
パスが空か判定する。
汎用フォーマットとしてのパスが空であればtrue
、そうでなければfalse
を返す。
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path p1;
if (p1.empty()) {
std::cout << "p1 : empty" << std::endl;
}
fs::path p2 = "/usr/bin/clang";
if (!p2.empty()) {
std::cout << "p2 : not empty" << std::endl;
}
}
- empty()[color ff0000]
p1 : empty
p2 : not empty
- C++17
- Clang:
- GCC, C++17 mode: 8.1
- Visual C++: