There are several examples in both sets of documentation that will get you there.
UPDATE
Other Notes:
Use strictures and warnings.
Indent your code (at least for us)
Don't use chop. Use chomp
Use a real array and push
# ex my @drives; # you want an array foreach (<FSUTIL>) { chomp; # don't use chop push(@drives, $_); } close(FSUTIL);
In reply to Re: find and delete file in Drive
by grep
in thread find and delete file in Drive
by joshboski
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |