std::filesystem::directory_entry::is_block_file

来自cppreference.com
 
 
 
 
bool is_block_file() const;
(1) (C++17 起)
bool is_block_file( std::error_code& ec ) const noexcept;
(2) (C++17 起)

检查所指向对象是否阻塞设备。各自等效于返回:

参数

ec - 不抛出重载中报告错误的输出形参

返回值

若所指代文件系统对象是阻塞设备则为 true,否则为 false

异常

若内存分配失败,则任何不标记为 noexcept 的重载可能抛出 std::bad_alloc

1) 抛出 std::filesystem::filesystem_error,构造时以 p 为第一路径实参并以OS 错误码为错误码实参。

若 OS API 调用失败,则 @2@ 设置 std::error_code& 形参

为 OS API 错误码,而未发生错误时则执行 ec.clear()

示例

#include <cstdio>
#include <cstring>
#include <filesystem>
#include <fstream>
#include <functional>
#include <iostream>
#include <memory>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/un.h>
#include <unistd.h>
 
namespace fs = std::filesystem;
 
void print_entry_type(const std::filesystem::directory_entry& entry)
{
    std::cout << entry.path() << ": ";
 
    if (!entry.exists())
        std::cout << "不存在";
    if (entry.is_block_file())
        std::cout << "是块设备";
    if (entry.is_character_file())
        std::cout << "是字符设备";
    if (entry.is_directory())
        std::cout << "是目录";
    if (entry.is_fifo())
        std::cout << "是具名 IPC 管道";
    if (entry.is_regular_file())
        std::cout << "是常规文件";
    if (entry.is_socket())
        std::cout << "是具名 IPC 套接字";
    if (entry.is_symlink())
        std::cout << " (符号链接)";
    if (entry.is_other())
        std::cout << " (`other` 文件)";
 
    std::cout << '\n';
}
 
template<typename Type, typename Fun>
class scoped_cleanup
{
    std::unique_ptr<Type, std::function<void(const Type*)>> u;
 
public:
    scoped_cleanup(Type* ptr, Fun fun) : u{ptr, std::move(fun)} {}
};
 
int main()
{
    // 创建不同种类的文件:
    std::filesystem::current_path(fs::temp_directory_path());
    const std::filesystem::path sandbox{"sandbox"};
    scoped_cleanup remove_all_at_exit{&sandbox, [](const fs::path* p)
    {
        std::cout << "清理: remove_all(" << *p << ")\n";
        fs::remove_all(*p);
    }};
    std::filesystem::create_directory(sandbox);
    std::ofstream{sandbox/"file"}; // 创建常规文件
    std::filesystem::create_directory(sandbox/"dir");
 
    mkfifo((sandbox/"pipe").string().data(), 0644);
    struct sockaddr_un addr; addr.sun_family = AF_UNIX;
 
    std::strcpy(addr.sun_path, (sandbox/"sock").string().data());
    int fd{socket(PF_UNIX, SOCK_STREAM, 0)};
    scoped_cleanup close_socket_at_exit{&fd, [](const int* f)
    {
        std::cout << "清理: 关闭套接字 #" << *f << '\n';
        close(*f);
    }};
    bind(fd, reinterpret_cast<sockaddr*>(std::addressof(addr)), sizeof addr);
 
    fs::create_symlink("file", sandbox/"symlink");
 
    for (std::filesystem::directory_entry entry: fs::directory_iterator(sandbox))
        print_entry_type(entry);
 
    // 直接请求文件系统对象状态:
    for (const char* str : {"/dev/null", "/dev/cpu", "/usr/include/c++",
                            "/usr/include/asm", "/usr/include/time.h"})
        print_entry_type(fs::directory_entry{str});
 
} // 通过 scoped_cleanup 对象进行清理

可能的输出:

"sandbox/symlink": 是常规文件 (符号链接)
"sandbox/sock": 是具名 IPC 套接字 (`other` 文件)
"sandbox/pipe": 是具名 IPC 管道 (`other` 文件)
"sandbox/dir": 是目录
"sandbox/file": 是常规文件
"/dev/null": 是字符设备 (`other` 文件)
"/dev/cpu": 不存在
"/usr/include/c++": 是目录
"/usr/include/asm": 是目录 (符号链接)
"/usr/include/time.h": 是常规文件
清理: 关闭套接字 #3
清理: remove_all("sandbox")

参阅

检查给定的路径是否表示块设备
(函数)