用于从服务器下载和删除文件的批处理文件

发布于 2024-09-28 07:09:01 字数 359 浏览 1 评论 0原文

如何编写 MS dos ftp 批处理文件以:

  1. 将文件从服务器下载到本地电脑
  2. 下载后从服务器中删除这些文件

编辑:

到目前为止,我有...

批处理文件:

ftp.exe -s:ftp.txt

FTP.txt:

打开domain.com

这里是用户名

密码在这里

cd /httpdocs/store/files

这里需要获取、列出和删除命令?

退出

How can I write a MS dos ftp batch file to:

  1. download files from the server to my local pc
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

药祭#氼 2024-10-05 07:09:01

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.

伴梦长久 2024-10-05 07:09:01

来自我在另一篇文章中的提示。

user-name
user-password
lcd c:\localfolder-where-download
cd remote-folder
mget .  
mdelete \\remote-folder\ .
quit

1 & 2行,你的凭据
3 - ftp 可以下载内容的本地文件夹
4 行 - 远程文件夹(如果需要)
5-行-将所有内容获取到本地文件夹
6 行 - 删除远程文件夹中的所有内容
7线退出!

From one of my cuestions in other post.

user-name
user-password
lcd c:\localfolder-where-download
cd remote-folder
mget .  
mdelete \\remote-folder\ .
quit

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!

遗忘曾经 2024-10-05 07:09:01

您可以下载ncftpput/ncftpget。使用 ncftpget,可以选择在下载后删除远程文件。

you can download ncftpput/ncftpget. With ncftpget, there's option to remove remote files after downloading.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文