我有一堆文件大多用一种编程语言编写,还有一些用其他编写。它们位于不同的文件夹中,但很少且可以定位。
我想制作一个程序,说明有多少行代码。我知道我可以为一个文件执行此操作,就像这样:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("file.txt");
int n = 0, aux;
string line;
while (getline(f, line))
n++;
cout << endl << n << " lines read" <<endl;
f.close();
}
但我怎么能“浏览”所有文件和文件夹并全部阅读呢?必须明确地为每一个人做这件事听起来很糟糕。
答案 0 :(得分:0)
将他人写的内容放在一起,这将是你的程序使用Qt:
#include <iostream>
#include <fstream>
#include <QApplication>
#include <QDir>
#include <QString>
using namespace std;
int countFile (QString path)
{
ifstream f (path.toStdString().c_str());
int n = 0;
string line;
while (getline(f, line))
n++;
return n;
}
int countDir (QString path)
{
int n = 0;
QDir dir (path);
if (dir.exists())
{
QFileInfoList list = dir.entryInfoList ();
for (int i = 0; i < list.size(); ++i)
{
if (list[i].isDir())
n += countDir (list[i].absoluteFilePath());
else
n += countFile (list[i].absoluteFilePath());
}
}
return n;
}
int main(int argc, char **argv)
{
QApplication a(argc, argv);
cout << endl << countDir ("path/to/dir") << " lines read" <<endl;
return 0;
}