RE: Comparing file sizes

2003-01-03 Thread Wagner, David --- Senior Programmer Analyst --- WGO
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

Comparing file sizes

2003-01-03 Thread Brian McGraw
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