namespace std::filesystem {
bool exists(file_status s) noexcept; // (1)
bool exists(const path& p); // (2)
bool exists(const path& p, std::error_code& ec) noexcept; // (3)
}
概要
ファイルが存在するか確認する。
戻り値
- (1) :
return status_known(s) && s.type() != file_type::not_found;
- (2) :
return exists(status(p));
- (3) :
file_status s = status(p, ec); if (ec) { return false; } if (!status_known(s)) { ec = implementation-defined; return false; } ec.clear(); return exists(s);
例外
- (1) : 投げない
- (2) : ファイルシステムがエラーを報告する場合がある。それに加えて、指定されたファイルの種別が
file_type::unknown
のいずれかである場合もエラーである。エラーが発生した場合は、std::filesystem::filesystem_error
例外を送出する - (3) : 投げない
例
#include <cassert>
#include <fstream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
std::ofstream{"regular.txt"};
fs::create_directory("dir");
// (1)
// 取得済みのファイル状態を使用して、ファイルの存在確認
assert(fs::exists(fs::status("regular.txt")));
// (2)
// パスを指定してファイル/ディレクトリの存在確認
assert(fs::exists("regular.txt"));
assert(fs::exists("dir"));
// (3)
// エラー情報を例外ではなくerror_codeで受け取る
std::error_code ec;
bool result = fs::exists("regular.txt", ec);
assert(!ec);
assert(result);
}
28
#include <cassert>
#include <fstream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
std::ofstream{"regular.txt"};
fs::create_directory("dir");
// (1)
// 取得済みのファイル状態を使用して、ファイルの存在確認
assert(fs::exists(fs::status("regular.txt")));
// (2)
// パスを指定してファイル/ディレクトリの存在確認
assert(fs::exists("regular.txt"));
出力
バージョン
言語
- C++17
処理系
- Clang: 7.0 ✅
- GCC: 8.1 ✅
- Visual C++: