Although I'm going to google search this, is there some way to find the size (in bytes) of a file without reading it in? There's no method in class File to do it, so I'm not not sure where else to look.
Thanks!
(If I find the answer, I'll post it here of course)
RandomAccessFile.length()
File():
long length() : Returns the length of the file denoted by this abstract pathname.
Quote from: Tuberload on February 02, 2004, 03:43 PM
File():
long length() : Returns the length of the file denoted by this abstract pathname.
ugh, I don't know how I missed that!
I was looking for getLength() and getSize(), and I must have read that list 10 times (I could have sworn that I had seen it last week, but that I couldn't find it!)
I've done it a few times too. ;)