I need to write a script that would automatically ftp files to the ftpserver. Since it involves directory structure transfer, I need to create directory in the server before I can ftp the files.
This is the error I got while
trying out the mkdir command on the server:
c:\> ftp ftpproxy
Connected to ftpproxy
220-Welcome to XXXXXXXXXXXXXXXXXXX
Server.
220
**** UNAUTHORIZED USE IS PROHIBITED!!! ****
User (ftpproxy:(none)):
user...@ftpserver.com
password:
user username logged in
ftp> pwd
257 "/home/username" is
current working directory
ftp> mkdir test
500 command not understood
ftp>
Why does it not recognized the mkdir command? When I type help at the ftp prompt, mkdir is one of the command listed. I tried the same thing from a unix server to the ftpserver and it worked. I tried from dos again to another server (no proxy server involved) and it also work.
Can anyone enlightened me on this?
Thanks in advance!!
Lee
ftp> mkd test
ftp> 500 command not understood
Please help.
Thanks,
Lee
quote mkd test
quote tells the remote host to execute the command
Lee Goh <go...@cadvision.com> wrote in message
news:37C5B275...@cadvision.com...
Lee