>>>>> "Anthony" == awards  <anthony> writes:

    Anthony> Hi, I have an upload script, and i want to check the file
    Anthony> size before it uploads.

The stat() function returns a list that includes file size as the
seventh element.  You can use:

   $size = (stat($filename))[7]; 

... to retrieve the size of $filename in bytes.

More information at perldoc -f stat,

- Chris.    
-- 
$a="printf.net"; Chris Ball | chris@void.$a | www.$a | finger: chris@$a
         "In the beginning there was nothing, which exploded."


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to