I've set of questions.....
1) You want a perl script to monitor a particular directory
2) if so, we can make this script as a daemon so that it monitors the
folder for the file.

here is the sample code...

#!/usr/bin/perl

use strict;

while (1) {
      # Monitor the folder here
      if (-e "/path/of/the/file/") {
          # do your processing
      }
}

Hope this helps --

Kalyan


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to