Help for this page

Select Code to Download


  1. or download this
     
    @ARGV = qw(.) unless @ARGV;
    use File::Find;
    ...
    @dirs=();
    my $dir="\\mlx\\";
    find sub {move("$File::Find::name, -d","$dir.$_") or die "This didn't 
    +work either"};
    
  2. or download this
     
    @ARGV = qw(.) unless @ARGV;
    use File::Find;
    find sub { print $File::Find::name, -d && "/", "\n" }, @ARGV;