Help for this page

Select Code to Download


  1. or download this
    C:\>copy /?
    Copies one or more files to another location.
    ...
    for source (using wildcards or file1+file2+file3 format).
    
    C:\>
    
  2. or download this
    copy blabla.jpg c:\games
    
    copy .\*.jpg c:\all_jpegs
    
  3. or download this
    #!/usr/bin/perl
    `copy blabla.jpg c:\\games`;
    
  4. or download this
    #!/usr/bin/perl
    use File::Copy;
    copy( 'file1', 'file2' );