我使用以下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
答案 0 :(得分:2)
在启动FTP会话之前将本地文件移动到临时位置
move *.* TEMPDIR
上传
mput TEMPDIR\*.*
在FTP会话结束时删除它们
del /q TEMPDIR\*.*