in C++17 it's as easy as ```cpp std::filesystem::file_size() ``` if we want c++11 support, it's a bit trickier (open it, seek to ened, ftell(), ~)