I've always used RBrowser for FTP, but I need to write a script, so I've been trying to learn how to use the command line ftp utility.
After connecting to a server, if I type...
get pathname1/pathname2/filename
...then I'm told that the file or directory does not exist. However, if I type...
cd pathname1/pathname2/
get filename
...everything works fine. Can you not use pathnames with the get command, i.e., get works only in the current directory?