filesystem added

This commit is contained in:
2021-03-25 23:08:35 +05:30
parent 0a4dd8a99c
commit d19849bc2e
2 changed files with 60 additions and 8 deletions

View File

@@ -7,14 +7,11 @@
* The driver code
*/
#include "Utils.hpp"
using namespace MCPS;
int main(int argc, char const *argv[]) {
fileop start;
auto data = start.scan_current_directory();
#include "Utils.h"
int main(int argc, char const *argv[]) {
krypto::fileop test;
std::vector<char> buffer;
for (auto d : data) {
d.second.print();
}
return 0;
}