in reply to Windows backslash problem
I would recommend using File::Copy:
Update: I forgot that File::Copy doesn't do globs...
use File::Copy; my @list = <a/b/*.txt>; foreach my $file (@list) { copy($file,"a/"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Windows backslash problem
by martymart (Deacon) on Jan 23, 2003 at 18:32 UTC |