用于从服务器下载和删除文件的批处理文件
如何编写 MS dos ftp 批处理文件以:
- 将文件从服务器下载到本地电脑
- 下载后从服务器中删除这些文件
编辑:
到目前为止,我有...
批处理文件:
ftp.exe -s:ftp.txt
FTP.txt:
打开domain.com
这里是用户名
密码在这里
cd /httpdocs/store/files
这里需要获取、列出和删除命令?
退出
How can I write a MS dos ftp batch file to:
- download files from the server to my local pc
- remove these files from the server after download
Edit:
So far I have...
Batch file:
ftp.exe -s:ftp.txt
FTP.txt:
open domain.com
usernamehere
passwordhere
cd /httpdocs/store/files
need get, list and delete commands here??
quit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ftp.exe 程序可以采用某种脚本文件作为输入(该示例上传一个文件,但我想明白了),所以您应该能够为需要执行的命令创建一个脚本,然后使用适当的输入启动批处理文件 ftp.exe。
The ftp.exe program can take a sort of script file as input (that example uploads a file, but I guess to get the idea), so you should probably be able to create a script for the commands that you need to carry out, and then have a batch file launch ftp.exe with the appropriate input.
来自我在另一篇文章中的提示。
1 & 2行,你的凭据
3 - ftp 可以下载内容的本地文件夹
4 行 - 远程文件夹(如果需要)
5-行-将所有内容获取到本地文件夹
6 行 - 删除远程文件夹中的所有内容
7线退出!
From one of my cuestions in other post.
1 & 2 line , your credentials
3 - line local folder where the ftp can download the content
4- line - remote folder if needed
5- line - get al content to your local folder
6- line - delete all content from your remote folder
7- line quit!
您可以下载ncftpput/ncftpget。使用 ncftpget,可以选择在下载后删除远程文件。
you can download ncftpput/ncftpget. With
ncftpget
, there's option to remove remote files after downloading.