in reply to Re: Any issue with copy of file where filename contains + sign?
in thread Any issue with copy of file where filename contains + sign?

thanks for your reply. Are you saying that it is possible to copy files with + in filename without script creating extra directory in perl?

  • Comment on Re^2: Any issue with copy of file where filename contains + sign?

Replies are listed 'Best First'.
Re^3: Any issue with copy of file where filename contains + sign?
by ikegami (Patriarch) on Apr 13, 2010 at 02:21 UTC
    Sure thing. File::Copy's copy does not treat "+" specially. And like most copy utilities, it doesn't create directories. (See mkdir and File::Path's mkpath if you need to create directories.)