标题: [文件操作] [已解决]如何用批处理实现flashfxp每日自动从服务器下载上一日的数据备份? [打印本页]
作者: tmp05 时间: 2020-5-29 08:39 标题: [已解决]如何用批处理实现flashfxp每日自动从服务器下载上一日的数据备份?
本帖最后由 tmp05 于 2020-6-7 15:22 编辑
服务器用serv-u架设的ftp,备份文件为上一日的数据,文件名称为backup20200528.rar
client端是7x64,安装了Flashfxp,若当前日期为20200529
请问如何用批处理实现flashfxp每日自动从服务器下载上一日的数据备份?谢谢!
作者: tmp05 时间: 2020-5-29 14:48
这个有点难度,静候回复。
作者: flashercs 时间: 2020-5-29 15:08
获取前一天日期后用flashfxp软件下载应该你会写吧...- for /f %%A in ('powershell -command "(Get-Date).AddDays(-1).ToString('yyyyMMdd')"') do set mydate=%%A
- echo mydate=%mydate%
复制代码
作者: tmp05 时间: 2020-5-29 16:12
回复 3# flashercs
还真不会 是否能补全?谢谢!
作者: flashercs 时间: 2020-5-29 16:48
回复 4# tmp05
flashfxp的命令行参数还得让我去查...
作者: Batcher 时间: 2020-5-30 00:32
回复 1# tmp05
直接使用系统自带的 ftp 命令试试- @echo off
- rem 指定FTP用户名
- set ftpUser=FTPUSERNAME
- rem 指定FTP密码
- set ftpPass=FTPPASSWORD
- rem 指定FTP服务器地址
- set ftpIP=192.168.0.2
- rem 指定待下载的文件位于FTP服务器的哪个目录
- set ftpFolder=/SharedFile/Log
- rem 指定从FTP下载下来的文件存放到本机哪个目录
- set LocalFolder=C:\temp
-
- for /f %%i in ('powershell -c "Get-Date (Get-Date).AddDays(-1) -uformat "%%Y%%m%%d""') do (
- set "DstDate=%%i"
- )
-
- set ftpFile=%temp%\TempFTP.txt
- >"%ftpFile%" (
- echo,%ftpUser%
- echo,%ftpPass%
- echo cd "%ftpFolder%"
- echo lcd "%LocalFolder%"
- echo bin
- echo get backup%DstDate%.rar
- echo bye
- )
- start ftp -v -i -s:"%ftpFile%" %ftpIP%
复制代码
作者: tmp05 时间: 2020-6-1 15:43
回复 tmp05
flashfxp的命令行参数还得让我去查...
flashercs 发表于 2020-5-29 16:48
找到没?
作者: flashercs 时间: 2020-6-6 17:38
回复 7# tmp05
找到了,我得花时间去学习,可我为什么去学?
作者: tmp05 时间: 2020-6-7 09:35
回复 8# flashercs
还是谢谢!
作者: tmp05 时间: 2020-6-9 16:49
回复 tmp05
直接使用系统自带的 ftp 命令试试
Batcher 发表于 2020-5-30 00:32
还有个问题,如何改写语句以静默运行?
set ws=WScript.CreateObject("WScript.Shell")
ws.Run "d:\temp\ftpauto.bat",0
加了个vbs,似乎不行。
作者: Batcher 时间: 2020-6-9 17:12
回复 10# tmp05
试试其他方法:批处理后台隐藏运行的11种思路
http://bbs.bathome.net/thread-3271-1-1.html
作者: tmp05 时间: 2020-6-14 16:36
回复 tmp05
试试其他方法:批处理后台隐藏运行的11种思路
Batcher 发表于 2020-6-9 17:12
谢谢回复,这就去试下。
作者: Batcher 时间: 2020-6-28 09:38
回复 12# tmp05
如果试了都不行的话,我也没有其他方法了。
作者: tmp05 时间: 2020-6-28 10:55
如何去baidu?隐藏ftp批处理命令?
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |