this added a first rough version of a stat printout

This commit is contained in:
Marcel Nowicki
2022-02-09 22:19:08 +01:00
parent e3d451edcc
commit f1f60f3001

View File

@@ -4,6 +4,7 @@
#include <vector> #include <vector>
#include <cmath> #include <cmath>
#include <map> #include <map>
#include <filesystem>
// checks if a 512byte block consist only of 0 or \0 // checks if a 512byte block consist only of 0 or \0
bool eof (const char* buf) { bool eof (const char* buf) {
@@ -118,8 +119,12 @@ int main(int argc, char** argv) {
// empty the headerbuffer // empty the headerbuffer
delete[] headbuffer; delete[] headbuffer;
} }
file.close();
std::cout << sizeof_allfiles << std::endl; std::cout << "Archive size: " << std::filesystem::file_size(archiveFilename) << " Bytes"<< '\n';
std::cout << "Size of all items: " << sizeof_allfiles << " Bytes" << '\n' << '\n';
for (auto i : typecount) {
std::cout << i.first <<": " << i.second << '\n';
}
return 0; return 0;
} }