in reply to Platform-independent copying multiple files

File::Copy is a core module to copy files.

You can use globs or the File::Glob module to find files matching the glob.

  • Comment on Re: Platform-independent copying multiple files

Replies are listed 'Best First'.
Re^2: Platform-independent copying multiple files
by Ace128 (Hermit) on Oct 18, 2005 at 21:31 UTC
    I've used:
    my @all_matches = glob "*.txt"; my @files = grep {-f} @all_matches;
    for the glob part... :)