in reply to Re: filenames with spaces causing problems
in thread filenames with spaces causing problems
sub mv_files{ my ($file,$disc)=@_; print "moving $file to disc$disc/$file\n"; if ($doit == 1) { print "truely moving $file to disc$disc/$file\n"; move($file, "disc$disc/$file") or warn "move $file to +disc$disc/$file failed: $!\n" } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: filenames with spaces causing problems
by roju (Friar) on Jul 11, 2003 at 20:01 UTC | |
|
Re: Re: Re: filenames with spaces causing problems
by tedrek (Pilgrim) on Jul 11, 2003 at 21:48 UTC |