vote up -1 vote down star

I'm using Net::FTP to put a file on a remote server. I need to put the file in a folder whose name contains a space character. The cwd() method seems to not like the following arguments and nothing seems to work.

$ftp->cwd('My Folder')

$ftp->cwd('"My Folder"')

$ftp->cwd('\"My Folder\"')

Has anyone done this before? How do I cwd into "My Folder" ?

TIA.

flag
1  
did you try `$ftp->cwd('My\\ Folder') too? – dlamblin Nov 4 at 23:37
2  
What's the error message you are getting (under $ftp->message)? – jheddings Nov 4 at 23:43
2  
Enable debugging in the constructor, Net::FTP->new(..., Debug => 1) and post the output. – Sinan Ünür Nov 5 at 0:11
Thanks @jheddings . turns out I was in the wrong folder to being with ~blush~ – willwillis Nov 5 at 0:13
1  
:) happens to the best of us. – jheddings Nov 5 at 1:58

1 Answer

vote up 3 vote down check

Just tried this and it worked fine:

$ftp->cwd('My Folder');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.