Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: iago on February 02, 2004, 01:41 PM

Title: Filesize
Post by: iago on February 02, 2004, 01:41 PM
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)
Title: Re:Filesize
Post by: iago on February 02, 2004, 02:58 PM
RandomAccessFile.length()
Title: Re:Filesize
Post by: Tuberload on February 02, 2004, 03:43 PM
File():
long length() : Returns the length of the file denoted by this abstract pathname.
Title: Re:Filesize
Post by: iago on February 02, 2004, 07:03 PM
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!)
Title: Re:Filesize
Post by: Tuberload on February 02, 2004, 07:08 PM
I've done it a few times too.  ;)