While using this template:
sftp://martin:mypassword@example.com
the password I'm trying to use has the @ symbol which is confusing the parser.
Can the password be quoted or the @ in the password be escaped or something else?
Richard
I read the link and understood that special character needed to be replaced by %XX where XX is hexadecimal ASCII code.
I tried to connect to the FTP server(Windows 2008) and the user name is abc-dms\ABCDE. I have tried abc%2Ddms%5CABCDE and abc-dms%5CABCDE but both didn't work.
option batch abort
option confirm off
open pcn-dms\DCN020A004:12345@site
cd /test_transfer_log
lcd C:\New_DMSInterface_Test\LOG
get -delete *.*
cd /test_transfer
lcd C:\New_DMSInterface_Test\PROCESSED
get -delete *.*
close
exit
BTW, how I can get the full log file if I run the script in command-line mode.