in reply to Re^3: remove directory in perl
in thread remove directory in perl

-M is simpler.

The OP already asked this question here and here

Replies are listed 'Best First'.
Re^5: remove directory in perl
by thunders (Priest) on May 20, 2009 at 16:06 UTC

    That's true, for the specific case I gave -M is simpler. The only thing to note is that -M doesn't use time(). It uses script start time. So in a long running process it may not be what you want:

    $ perl -e ' print -M "/usr/bin","\n"; sleep(120); print -M "/usr/bin", +"\n"' 5.9218287037037 5.9218287037037

    Thanks, I didn't realize I was responding to a question that has already been thoroughly answered.