vote up 1 vote down star

I have a project where I need to compare 2 executeable files and see if they are of the same file size.

Unfortunately, this is an addition to an existing VB6 project. I'm not entirely sure how to do it other than compare filestreams?

Could someone point me in the right direction?

Thanks in advance for any help.

flag

4 Answers

vote up 4 vote down check

I seem to recall that

FileLen(filename)

returns the file size

link|flag
+1. Just like it says in the manual. msdn.microsoft.com/en-us/library/… – MarkJ Aug 18 at 11:07
vote up 0 vote down

Just one unrelated note on FileLen() - it completely and utterly fails on files over 4GB (e.g. greater than 32-bit integer). Gotta use the Windows API to see the length of files that large.

link|flag
vote up 0 vote down

What about using FileLen() ?

link|flag
vote up 0 vote down

Use FileLen() function - It returns size of file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.