Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Monitoring an FTP upload directory

by gellyfish (Monsignor)
on Nov 07, 2006 at 21:28 UTC ( [id://582738]=note: print w/replies, xml ) Need Help??


in reply to Monitoring an FTP upload directory

If you are on a Linux or similar system where the modules are supported and you have FAM configured you could try something like:

#!/usr/bin/perl use strict; use warnings; use File::Basename; use SGI::FAM; use Linux::Fuser; use File::Spec; my $fam = SGI::FAM->new(); $fam->monitor('/home/jonathan/famtest'); my %filecache; my $newdir = '/home/jonathan/famtemp'; my $fuser = Linux::Fuser->new(); while (1) { my $event = $fam->next_event(); my $basename = basename $event->filename(); my $fullpath = File::Spec->catfile($fam->which($event),$basename); if ( $event->type() eq 'create' ) { $filecache{$basename}++; } elsif ( $event->type() eq 'change' ) { if ( exists $filecache{$basename} and ! $fuser->fuser($fullpath) +) { rename $fullpath,File::Spec->catfile($newdir,$basename) or warn "Couldn't move $fullpath - $ +!\n"; delete $filecache{$basename}; } } else { print "Pathname: ", $event->filename, " Event: ", $event->type, "\n"; } }

/J\

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://582738]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 06:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found