如何使用ftp命令从本地机器上删除文件?

时间:2016-02-26 14:41:00

标签: batch-file ftp batch-processing ftp-client

我使用以下ftp命令将文件从我的本地mashine传输到远程mashine。之后我想删除本地mashine中的文件。我的情况应该用哪个命令?必须在mput

之后插入该命令
open xx.xxx.xxx.xx
username
password
cd \path\to\remote\mashine
lcd \path\to\local\mashine
binary
mput *.*
disconnect
bye

1 个答案:

答案 0 :(得分:2)

  1. 在启动FTP会话之前将本地文件移动到临时位置

    move *.* TEMPDIR

  2. 上传

    mput TEMPDIR\*.*

  3. 在FTP会话结束时删除它们

    del /q TEMPDIR\*.*