you running with warnings? strict?
-Original Message-
From: Brian McGraw [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 03, 2003 11:10
To: [EMAIL PROTECTED]
Subject: Comparing file sizes
Hello all.
I'm trying to compare the size of two files in a script. I know I can open
them, fe
Hello all.
I'm trying to compare the size of two files in a script. I know I can open them, feed
each into an array, and compare the number of lines, but that seems silly and
inefficient. I tried using File::stat in the following manner:
$file1 = stat($firstFile);
$file2 = stat($secondFile);
i