Advertisement
AmidamaruZXC

Untitled

Apr 6th, 2020
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. long long getFileSize(const string& filename)
  2. {
  3.     ifstream fin;
  4.     fin.open(filename, ios::ate);
  5.     long long fileSize = fin.tellg();
  6.     fin.close();
  7.     return fileSize;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement