Help for this page

Select Code to Download


  1. or download this
    system("cp $foo $bar");
    system("mv $foo $bar");
    
  2. or download this
    use File::Copy;
    copy($foo,$bar);
    move($foo,$bar);