bool is_other() const; // (1)
bool is_other(std::error_code& ec) const noexcept; // (2)
概要
パスが存在していない、もしくはシステム依存の種別のファイルを指しているかを確認する。
戻り値
- (1) :
std::filesystem::is_other(this->status())
を返す - (2) :
std::filesystem::is_other(this->status(), ec)
を返す
例外
- (1) :
std::filesystem::is_other()
関数が例外を送出する可能性がある - (2) : 投げない
例
#include <iostream>
#include <filesystem>
#include <fstream>
namespace fs = std::filesystem;
int main()
{
fs::create_directory("dir");
fs::create_directory("dir/inner_dir");
std::ofstream{"dir/a.txt"};
std::cout << std::boolalpha;
for (const fs::directory_entry& x : fs::directory_iterator("dir")) {
std::cout << x.path() << " : " << x.is_other() << std::endl;
}
}
出力例
"dir/inner_dir" : false
"dir/a.txt" : false
バージョン
言語
- C++17
処理系
- Clang:
- GCC: 8.1 ✅
- Visual C++: