最終更新日時(UTC):
が更新

履歴 編集

function
<filesystem>

std::filesystem::path::empty(C++17)

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;
  }
}

出力

p1 : empty
p2 : not empty

バージョン

言語

  • C++17

処理系

参照