Generally, ftp url format is ftp://user[:pass]@ip[:port]/path
But now I got this string:
ftp://dude:1.1.1.1@1.1.1.1/@1.1.1.1/fml
It seems it's ambiguous because the parse result can be:
password=1.1.1.1, path=@1.1.1.1/fmlpassword=1.1.1.1@1.1.1.1/, path=fml
Should I have to just tell the client this is illegal, or is there any more friendly way to deal with it? Thanks..
@into%40, assuming your ftp client is URL-aware. – Marc B May 8 '12 at 4:07