I have a situation that I have to use raw ftp commands such as cwd, retr, size, stor, type, and rest. I found out that most of GUI based FTP clients do not support command line commands.

Is there a window ftp client that supports raw ftp commands?

link|improve this question

66% accept rate
feedback

2 Answers

up vote 4 down vote accepted

many clients have a way to quote input commands and send them directly to the server.

For example, with the Windows command-line client (ftp.exe), log on to a remote host and try this:

ftp> quote cwd /pub
250 OK. Current directory is /pub
ftp> quote mode s
200 S OK

..and so on.

GUI clients typically have a similar function. FlashFXP has the Raw Command (CTRL-R) menu option for example.

link|improve this answer
exactly what I wanted! Thanks! – user12077 May 23 '10 at 21:43
feedback

Open a command prompt and type ftp press 'enter'. This will give you an ftp command prompt. Type help for available commands.

This should work on most versions of Windows, from 2000 on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.