> I need to connect to FTP but the password contains chars like #"@" or #"\". What can 
>I do?

>From the network protocols document:

You can also open FTP connections by using a port specification rather than a URL. 
This allows you to use any password, even ones containing special characters that are 
not easily written in URLs. An example of a port specification to open an FTP 
connection is:

ftp-port: open [
    scheme: `ftp
    host: "ftp.site.com"
    user: ask "Username? "
    pass: ask "Password? "
]
See the "Specifying Network Resources" section above for more detail.



-- 
Fantam


Reply via email to