Advertisement

Finding the File Size

Started by April 04, 2000 04:20 PM
0 comments, last by WymsicalWyvern 24 years, 8 months ago
Very basic question, how do you find the files size? Thanks in advance
You can try this:

int nFileSize = 0;ifstream in;in.open("C:\\somedir\\somefile", ios::nocreate / ios::binary);if(in.fail()){   in.close();}else{   in.seekg(0, ios::end);   nFileSize = in.tellg();   in.close();}  

You'll have to include fstream.h
The last slash in the in.open function is supposed to be a vertical bar (the 'OR' sign).

*Sparkle*

Edited by - Sparkle on 4/4/00 4:53:29 PM

This topic is closed to new replies.

Advertisement