标题: [文件操作] [已解决]如何写批处理按日期时间加密压缩备份后删除原来的文件 [打印本页]
作者: tmp05 时间: 2020-5-27 14:11 标题: [已解决]如何写批处理按日期时间加密压缩备份后删除原来的文件
本帖最后由 tmp05 于 2020-6-7 15:21 编辑
以下是按日期加密备份文件,已测试通过,但如何改写为按日期时间压缩备份后删除原来的文件,谢谢!- @echo off
- cd /d C:\Program Files\WinRAR\
- set riqi=%date:~0,4%%date:~5,2%%date:~8,2%
- reg export "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Macromedia\FlashPlayerActiveX" d:\flashplayer.reg /y
- rar.exe a -r -hp12345678 -ta%riqi% "d:\flashplayer%riqi%.rar" d:\flashplayer.reg
复制代码
作者: smss 时间: 2020-5-27 14:38
本帖最后由 smss 于 2020-5-27 16:49 编辑
- @echo off&setlocal enabledelayedexpansion
- if %time:~0,2% lss 10 (set time=!time:~1,1!!time:~3,2!!time:~6,2!) else set time=!time:~0,2!!time:~3,2!!time:~6,2!
- reg export "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Macromedia\FlashPlayerActiveX" d:\flashplayer.reg /y
- "C:\Program Files\WinRAR\Rar.exe" a -p我忘了 d:\flashplayer!date:~0,4!!date:~5,2!!date:~8,2!!time!.rar d:\flashplayer.reg&del d:\flashplayer.reg&pause
复制代码
作者: Batcher 时间: 2020-5-27 15:24
回复 1# tmp05
rar.exe a -df -r -hp12345678 -ta%riqi% "d:\flashplayer%riqi%.rar" d:\flashplayer.reg
试试 -df 参数是不是你要的效果
http://bbs.bathome.net/thread-4143-1-1.html
作者: tmp05 时间: 2020-5-27 15:58
smss 发表于 2020-5-27 14:38
运行通过了,但得到的文件名里不含时间,正确的该是flashplayer202005271559.rar
能否再帮修改下?谢谢!
作者: smss 时间: 2020-5-27 16:32
回复 4# tmp05
已修改再试试
作者: tmp05 时间: 2020-5-28 17:09
回复 5# smss
这样对了,谢谢!
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |