grashoper has asked for the wisdom of the Perl Monks concerning the following question:
use File::Copy::Recursive; use File::Find; use File::Copy; #use strict; $Verbose; my $srcdir='c:\\inetpub\\performancetesting\\output\\new\\mlx\\'; my $destdir='c:\\mlx\\'; File::Copy::Recursive::dirmove $srcdir, $destdir or die "Copy failed: +$!"; print "done copying";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: move files without blowing out directories
by ww (Archbishop) on Apr 28, 2009 at 18:28 UTC | |
|
Re: move files without blowing out directories
by ikegami (Patriarch) on Apr 28, 2009 at 18:51 UTC | |
|
Re: move files without blowing out directories
by ramrod (Priest) on Apr 28, 2009 at 18:28 UTC |