gpt4 book ai didi

c++ - C++中文件夹和文件的区别

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

我有这段代码可以打开一个目录并检查列表是否不是常规文件(意味着它是一个文件夹)它也会打开它。如何使用 C++ 区分文件和文件夹。如果有帮助,这是我的代码:

#include <sys/stat.h>
#include <cstdlib>
#include <iostream>
#include <dirent.h>
using namespace std;

int main(int argc, char** argv) {

// Pointer to a directory
DIR *pdir = NULL;
pdir = opendir(".");

struct dirent *pent = NULL;

if(pdir == NULL){
cout<<" pdir wasn't initialized properly!";
exit(8);
}

while (pent = readdir(pdir)){ // While there is still something to read
if(pent == NULL){
cout<<" pdir wasn't initialized properly!";
exit(8);
}

cout<< pent->d_name << endl;
}

return 0;

最佳答案

一种方法是:

switch (pent->d_type) {
case DT_REG:
// Regular file
break;
case DT_DIR:
// Directory
break;
default:
// Unhandled by this example
}

您可以在 GNU C Library Manual 上查看 struct dirent 文档.

关于c++ - C++中文件夹和文件的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9301151/

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