当前位置:网站首页>Bat operation FTP upload and download command
Bat operation FTP upload and download command
2022-07-01 05:45:00 【pursue. dreams】
ftp Upload
establish bat Script
@echo off
echo open ftp The server ip Address >>ftp.tmp
echo user name >>ftp.tmp
echo password >>ftp.tmp
echo lcd Local directory >>ftp.tmp
echo mput file name >>ftp.tmp
echo y>>ftp.tmp
echo bye>>ftp.tmp
echo exit>>ftp.tmp
:: General ftp command , Temporary build on ftp.tmp In file
:: perform ftp.tmp The command
ftp -s:ftp.tmp
:: Delete the generated temporary file
del ftp.tmp
@echo on
ftp download
establish bat Script
@echo off
echo open ftp The server ip Address >>ftp.tmp
echo user name >>ftp.tmp
echo password >>ftp.tmp
echo lcd Local directory >>ftp.tmp
echo mget file name >>ftp.tmp
echo y>>ftp.tmp
echo bye>>ftp.tmp
echo exit>>ftp.tmp
:: General ftp command , Temporary build on ftp.tmp In file
:: perform ftp.tmp The command
ftp -s:ftp.tmp
:: Delete the generated temporary file
del ftp.tmp
@echo on
边栏推荐
- Basic electrician knowledge 100 questions
- Web Security (IX) what is JWT?
- Continuous breakthrough and steady progress -- Review and Prospect of cross platform development technology of mobile terminal
- Chapitre d'apprentissage mongodb: Introduction à la première leçon après l'installation
- Don't put your notes and videos everywhere!
- Summary of common components of applet
- Flowable source code comment (XXXIX) task listener
- HDU - 1024 Max Sum Plus Plus(DP)
- HDU - 1024 Max Sum Plus Plus(DP)
- 数据库连接池的简单实现
猜你喜欢

mysql 将毫秒数转为时间字符串

Brief description of activation function

喊我们大学生个人云服务特供商

Speed regulation and stroke control based on Ti drv8424 driving stepper motor

Huluer app help

Advanced cross platform application development (III): online resource upgrade / hot update with uni app

Educational administration management system (free source code)

Leetcode top 100 questions 1 Sum of two numbers

Send you through the data cloud

亲爱的派盘用户,我要向您表白!
随机推荐
json数据比较器
移动端常用解决方案
libpng12.so.0: cannot open shared object file: No such file or directory 亲测有效
rust猜数字游戏
MySQL converts milliseconds to time string
不是你脑子不好用,而是因为你没有找到对的工具
Web Security (IX) what is JWT?
Data governance: data governance management (Part V)
为了保护自己的数据,他奋斗了一天一夜
bat操作ftp上传下载命令
CentOS 7使用yum安装PHP7.0
Summary of common components of applet
论文学习记录随笔 多标签之LSML
Debug details under pycharm
葫芦儿 APP 使用帮助
Continuous breakthrough and steady progress -- Review and Prospect of cross platform development technology of mobile terminal
How to create a progress bar that changes color according to progress
OpenGL ES: (1) OpenGL ES的由来 (转)
Actual combat: basic use of Redux
数据库连接池的简单实现