in reply to How do I copy an empty directory?

Create a new directory with the desired name and then delete the old directory.

Replies are listed 'Best First'.
Re^2: How do I copy an empty directory?
by Anonymous Monk on Oct 03, 2012 at 00:59 UTC
    As mentioned in the original post, some directories are not empty. How would this deal with those?
      The question, smartass, was "How can I move the empty directory named "empty" at the end of the path to c:\temp for example to make c:\temp\empty?"
        Well, what that guy said, could work, if the directory is not empty, then rmdir won't remove it, so
        #!/usr/bin/perl -- use Path::Class::Rule; my $source = dir( 'x:\this\directory\name\is\empty' ); my $newdir = $dd->basename; my $destination = dir( 'C:\temp' ); if( rmdir $dd ){ my $newdir = dir( $destination, $newdir ); if( mkdir $newdir ){ } else { warn "Couldn't mkdir $newdir : $! $^E \n restoring $source "; mkdir $source or die "FAILED $! $^E"; } } else { die "Couldn't rmdir $dd : $! $^E"; }

        Naturally this doesn't try to preserve permissions or anything like that

        File::Copy::move should also work with empty dirs