gpt4 book ai didi

c++ - 如何检查文件是否为常规文件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:49:20 24 4
gpt4 key购买 nike

如果文件是常规文件(而不是目录、管道等),我如何在 C++ 中检查?我需要一个函数 isFile()。

DIR *dp;
struct dirent *dirp;

while ((dirp = readdir(dp)) != NULL) {
if ( isFile(dirp)) {
cout << "IS A FILE!" << endl;
i++;
}

我试过将 dirp->d_type 与 (unsigned char)0x8 进行比较,但它似乎无法通过不同的系统移植。

最佳答案

您可以使用可移植 boost::filesystem (直到最近在 C++17 中引入 std::filesystem,标准 C++ 库才能做到这一点):

#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <iostream>

int main() {
using namespace boost::filesystem;

path p("/bin/bash");
if(is_regular_file(p)) {
std::cout << "exists and is regular file" << std::endl;
}
}

关于c++ - 如何检查文件是否为常规文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/328944/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com