我是C++的新手,我正在尝试使用dirent.h header 来处理目录条目。以下小应用程序可以编译,但是在您添加目录名称后会呕吐。有人可以给我提示吗? int quit提供了while循环。为了解决我的问题,我删除了循环。
谢谢!
#include <iostream>
#include <dirent.h>
using namespace std;
int main()
{
char *dirname = 0;
DIR *pd = 0;
struct dirent *pdirent = 0;
int quit = 1;
cout<< "Enter a directory path to open (leave blank to quit):\n";
cin >> dirname;
if(dirname == NULL)
{
quit = 0;
}
pd = opendir(dirname);
if(pd == NULL)
{
cout << "ERROR: Please provide a valid directory path.\n";
}
return 0;
}
最佳答案
如果您使用的是C++,请不要使用char *或数组,请使用std::string:
#include <string>
....
string dirname;
cout<< "Enter a directory path to open (leave blank to quit):\n";
getline( cin, dirname );
if ( dirname == "" ) {
exit(1);
}
....
pd = opendir(dirname.c_str() );
关于c++ - 如何正确使用dirent.h,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3029633/