Help for this page

Select Code to Download


  1. or download this
    use File::Copy qw( move ); 
    move( $file_in_old_location, $new_location );
    
  2. or download this
    use Cwd;
    my $pwd = cwd();
    chdir( $somewhere_else );
    # ... now you can do something over there 
    chdir( $pwd );  # restores original location.