in reply to Re: Re: Re: Stumped with File::Find and -s
in thread Stumped with File::Find and -s

Thanks for the advice. Per your suggestion the code was changed as below. The result was 5856 when it should be 1760(verified).
#! Check Folder Size use File::Find; my $total_size = 0; find(sub { $total_size += -s }, $upload_dir ); if ($total_size > $maxfoldersize) { print"You have exceded your limit of $maxfoldersize KB for the directo +ry $email_address \n"; } #! End of Folder Check

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Stumped with File::Find and -s
by BrowserUk (Patriarch) on Nov 22, 2002 at 12:35 UTC

    My best guesses are:

    1. $upload_dir doesn't contain what you think it contains.

      If $email_address is empty, something that your script as posted did not verify, then you would be performing the File::Find on the parent subdirectory.

      As File::Find processes the entire sundirectory tree starting at the subdir you give it, this would cause it to accumulate the filesizes of all the files in all the subdirectories below /home/bsexton/public_html/NEWClients/. You could verify this speculation by manually issuing an ls or du or whatever command on that directory and it's children and see if the number matches.

    2. The subdir you are checking itself contains other subdirs (or possibly symbolic links) and they are being included in the search by File::Find.

    These are just guesses. You are the only one who can eliminate them as possibilities and if they are incorrect, you will need to try a little lateral thinking of your own.


    Okay you lot, get your wings on the left, halos on the right. It's one size fits all, and "No!", you can't have a different color.
    Pick up your cloud down the end and "Yes" if you get allocated a grey one they are a bit damp under foot, but someone has to get them.
    Get used to the wings fast cos its an 8 hour day...unless the Govenor calls for a cyclone or hurricane, in which case 16 hour shifts are mandatory.
    Just be grateful that you arrived just as the tornado season finished. Them buggers are real work.

      The $email_address is verified in the input form and I also tried hard coding a directory name('TEST'). There are also no othr directories under NEWClients. Since it is my hosting company, I don't have access to the command line to do a du or ls, unless I do it in the script. I did however ftp the directories back to my PC and checked them. Nothing comes close to the value.