首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

批处理文件-移动文件夹里的数据库备份文件到网络上的投射路径

2012-07-02 
批处理文件-移动文件夹里的数据库备份文件到网络上的映射路径批处理文件写法如下:@echo off::设置数据库备

批处理文件-移动文件夹里的数据库备份文件到网络上的映射路径
批处理文件写法如下:
@echo off
::设置数据库备份文件夹路径
set current=E:\test
::在映射路径里创建文件夹(取当前的系统时间,如2011-06-14),z为映射的路径
md Z:\%date:~0,10%
::遍历访问数据库备份文件夹里的数据库文件,备份文件后缀名不是.bat;先xcopy,然后再删除
for /f "delims=" %%1 in ('dir /s /b %current%')do if /i not "%%~x1"==".bat" (xcopy /e /y "%%~1" D:\test\%date:~0,10% && del "%%~1")
pause

热点排行