命名空间
变体
操作

std::experimental::filesystem::exists

来自 cppreference.com
< cpp‎ | experimental‎ | fs
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性 非 TS
模式匹配
线性代数
std::execution
契约
二维图形
 
 
定义在头文件 <experimental/filesystem>
bool exists( file_status s )
(1) (文件系统 TS)
bool exists( const path& p );
bool exists( const path& p, error_code& ec )
(2) (文件系统 TS)

检查给定的文件状态或路径是否对应于现有的文件或目录。

1) 等价于 status_known(s) && s.type() != file_type::not_found.
2) 等价于 exists(status(p))exists(status(p, ec)) (会跟随符号链接)。 不抛出异常的重载在发生错误时返回 false.

内容

[编辑] 参数

s - 要检查的文件状态
p - 要检查的路径
ec - 不抛出异常的重载中的错误报告输出参数

[编辑] 返回值

如果给定的路径或文件状态对应于现有文件或目录,则为 true,否则为 false.

[编辑] 异常

1)
noexcept 规范:  
noexcept
  
2) 不接受 error_code& 参数的重载在底层操作系统 API 错误时抛出 filesystem_error,使用 p 作为第一个参数,以及操作系统错误代码作为错误代码参数构造。 如果内存分配失败,可能会抛出 std::bad_alloc。 接受 error_code& 参数的重载如果操作系统 API 调用失败,则将其设置为操作系统 API 错误代码,如果未发生错误,则执行 ec.clear()。 此重载具有
noexcept 规范:  
noexcept
  

[编辑] 备注

此函数提供的信息通常也作为目录迭代的副产品提供。 在目录迭代期间,调用 exists(*iterator) 的效率低于 exists(iterator->status())

[编辑] 示例

#include <cstdint>
#include <experimental/filesystem>
#include <fstream>
#include <iostream>
namespace fs = std::experimental::filesystem;
 
void demo_exists(const fs::path& p, fs::file_status s = fs::file_status{})
{
    std::cout << p;
    if (fs::status_known(s) ? fs::exists(s) : fs::exists(p))
        std::cout << " exists\n";
    else
        std::cout << " does not exist\n";
}
 
int main()
{
    fs::create_directory("sandbox");
    std::ofstream("sandbox/file"); // create regular file
    fs::create_symlink("non-existing", "sandbox/symlink");
 
    demo_exists("sandbox");
    for (auto it = fs::directory_iterator("sandbox"); it != fs::directory_iterator(); ++it)
        demo_exists(*it, it->status()); // use cached status from directory entry
    fs::remove_all("sandbox");
}

输出

"sandbox" exists
"sandbox/file" exists
"sandbox/symlink" does not exist

[编辑] 参见

确定文件属性
确定文件属性,检查符号链接目标
(函数) [编辑]
表示文件类型和权限
(类) [编辑]
此目录条目指定的缓存文件状态
此目录条目指定的缓存 symlink_status
(std::experimental::filesystem::directory_entry 的公有成员函数) [编辑]