从FTP命令获取消息

时间:2013-10-01 12:11:48

标签: batch-file ftp

我想知道是否存在一种方法来批量传入来自FTP功能的ascii文件。 我在.CMD文件中有这条指令:

  

ftp -i -s:mescommandes.txt

在mescommandes.txt中:

open "ipserver"

"user"

"pwd"

ascii

lcd "working\directory"

cd "storage\directory"

mput  monficA*.txt

mput  monficB*.txt

mput  monficC*.txt

quit

我想在ASCII文件中保存以下消息:226传输完成。

1 个答案:

答案 0 :(得分:1)

使用命令ftp -i -s:mescommandes.txt > out.txt将ftp的输出发送到文件out.txt。