in reply to Spaces in file names with Net::FTP
So, it looks like FTP->get was throwing out the filename before it ever requested it from the server. I checked on CPAN and sure enough, I had a really old libnet and Net::FTP installed. Newer versions do allow spaces in the filename.sub get { ... croak("Bad remote filename '$remote'\n") if $remote =~ /[\s\r\n]/s;
cured all my woes. Thanks again for the suggestions. --RTperl -MCPAN -e 'install Bundle::libnet'
|
---|