PODIO v00-16-03
An Event-Data-Model Toolkit for High Energy Physics Experiments
Loading...
Searching...
No Matches
try_filesystem.cpp
Go to the documentation of this file.
1#include <filesystem>
2#include <iostream>
3
4int main(int, char**) {
5 namespace fs = std::filesystem;
6
7 for (const auto& file : fs::directory_iterator("./")) {
8 std::cout << file.path() << ": " << file.file_size() << '\n';
9 }
10
11 return 0;
12}
int main()