| 13 | using namespace boost::filesystem; |
| 14 | |
| 15 | int main(int argc, char* argv[]) |
| 16 | { |
| 17 | if (argc < 2) |
| 18 | { |
| 19 | std::cout << "Usage: tut1 path\n"; |
| 20 | return 1; |
| 21 | } |
| 22 | std::cout << argv[1] << " " << file_size(argv[1]) << '\n'; |
| 23 | return 0; |
| 24 | } |
nothing calls this directly
no test coverage detected