我需要检查文件夹中的文件名是否以.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<lt;dp->d_name;as Error:表达式必须具有整型或非量程枚举类型
听起来您想要使用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...";