Help for this page

Select Code to Download


  1. or download this
    use File::Copy;
    copy("a/b/*.txt","a/");
    
  2. or download this
    use File::Copy;
    my @list = <a/b/*.txt>;
    foreach my $file (@list) {
      copy($file,"a/");
    }