gpt4 book ai didi

c++ - 错误 : Expression must have integral or unscoped enum type while reading d_name

转载 作者:行者123 更新时间:2023-11-28 04:28:36 25 4
gpt4 key购买 nike

我需要检查文件夹中的文件名是否以 .config 结尾。所以我使用下面的代码。

#include "stdafx.h"
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <fstream>
#include <iostream>
using namespace std;


void main(){
DIR *dirp;
struct dirent *dp;
char prnStr[254];

if ((dirp = opendir("D:/New folder/")) == NULL) {
cout << "Could not open directory!!";
return;
}
if ((dp = readdir(dirp)) != NULL) {
prnStr << dp->d_name;
size_t findprn = prnStr.str().find(".config");

if ((int)findprn != -1) {
cout << "Found .config File!!!!!";
}
else {
cout << "No .config files detected at this time...";
}
}
}

在这一行出现错误 prnStr << dp->d_name;作为错误:表达式必须具有整数或无作用域的枚举类型

最佳答案

听起来您想使用 std::ostringstream。将 prnStr 更改为这样的对象。

换行

char prnStr[254];

std::ostringstream prnStr;

另外,您正在寻找 .config 文件。也许你应该换行

        cout << "Found .prn File!!!!!";

        cout << "Found .config File!!!!!";

和改变

        cout << "No .prn files detected at this time...";

        cout << "No .config files detected at this time...";

关于c++ - 错误 : Expression must have integral or unscoped enum type while reading d_name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53625908/

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