If your "FTP folder" is actually on the NT box,
Win32::ChangeNotify would be a good solution. You can basically set your script to wait until a change in the directory (i.e. adding files) happens, then run whatever code you need to. Less messy than playing with NT's dog-awful at command.
Update: I knew I had some code that used it somewhere. Here's a simple example:
use Win32::ChangeNotify;
my $dir = "c:/some/dir/name";
$notify = Win32::ChangeNotify->new($indir, 0, FILE_NAME);
while (1)
{
$notify->wait or warn "Problem waiting: $!\n";
# Will now wait to execute following code
# until a file event happens in $dir
# ...stuff ...
$notify->reset;
}
$notify->close;
I put the
while (1) for brevity. In my actual code, I test to see if the script should be "finished" by checking for existence of a semi-lockfile and do
while (!$done).
GuildensternNegaterd character class uber alles!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.