Как заставить C_string() работать?
Я использую files.c_str (), который должен работать. Я получаю эту ошибку, когда пытаюсь это сделать.
|50|error: 'class std::vector<std::__cxx11::basic_string<char> >' has no member named 'c_str'|
Что я уже пробовал:
#include <iostream> #include <ctime> #include <sys/types.h> #include <sys/stat.h> #include <cerrno> #include <cstring> #include <sys/types.h> #include <dirent.h> #include <errno.h> #include <vector> #include <string> #include <fstream> using namespace std; int getdir (string dir, vector<string> &files) { DIR *dp; struct dirent *dirp; if((dp = opendir(dir.c_str())) == NULL) { cout << "Error(" << errno << ") opening " << dir << endl; return errno; } while ((dirp = readdir(dp)) != NULL) { files.push_back(string(dirp->d_name)); } closedir(dp); return 0; } int main(int argc, char** argv ) {std::ofstream outputFile; outputFile.open("Files.txt"); std::string dir = string("."); vector<string> files = vector<string>(); getdir(dir,files); for (unsigned int i = 0;i < files.size();i++) { cout << files[i] << endl; } struct stat fileInfo; if (stat(files.c_str, &fileInfo) != 0) {//Problem here<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< std::cerr << "Error: " << strerror(errno) << '\n'; } std::cout << "Type: : "; if ((fileInfo.st_mode & S_IFMT) == S_IFDIR) { // From sys/types.h std::cout << "Directory\n"; } else { std::cout << "File\n"; } std::cout << "Size : " << fileInfo.st_size << '\n'; // Size in bytes }
0x01AA
например, files[0].c_str() будет работать. Вопрос в том, что происходит с другими файлами