53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
// TestWebGen.cpp : Defines the entry point for the console application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include <iostream>
|
|
#include "GeneralBuilder.h"
|
|
#include <stdio.h>
|
|
#include <experimental\filesystem>
|
|
#include "Utilities.h"
|
|
#include "ThePraDev.h"
|
|
|
|
using namespace std::experimental::filesystem::v1;
|
|
|
|
|
|
using namespace std;
|
|
using namespace CTML;
|
|
|
|
|
|
int main()
|
|
{
|
|
path dir{current_path()};
|
|
cout << dir << endl;
|
|
auto entries{list<directory_entry>()};
|
|
for (auto p : directory_iterator(dir))
|
|
{
|
|
if (is_regular_file(p))
|
|
{
|
|
entries.push_back(p);
|
|
cout << p.path().string() << endl;
|
|
}
|
|
}
|
|
for (list<directory_entry>::iterator iterator = entries.begin(), end = entries.end(); iterator != end; ++iterator)
|
|
{
|
|
directory_entry a{*iterator};
|
|
|
|
cout << a.path().filename() << " *" << endl;
|
|
}
|
|
|
|
|
|
/*int i = 0;
|
|
list<Document> wholeSite = list<Document>();
|
|
GeneralBuilder dev;
|
|
wholeSite = dev.BuildThePraSite(Utilities::DEV);
|
|
for each (Document page in wholeSite)
|
|
{
|
|
page.WriteToFile(cDevOutputPath + n.pages[i++], Readability::MULTILINE);
|
|
}*/
|
|
cout << "DONE";
|
|
getchar();
|
|
return 0;
|
|
}
|
|
|