Windows:编写.bat脚本实现文件复制

一、需求

需要将指定目录下的.txt文件复制到指定目录中,复制完毕后删除文件

二、实现

@echo off  
echo "复制考勤数据........."  
echo.  
xcopy E:\checkindata\a001\*.txt Z:\a001\ /s /e /c /y /h /r
xcopy E:\checkindata\a001\*.txt Z:\a002\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a003\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a004\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a005\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a006\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a007\ /s /e /c /y /h /r  
xcopy E:\checkindata\a001\*.txt Z:\a008\ /s /e /c /y /h /r   
del E:\checkindata\a001\*.txt

将如上脚本命名为.bat 文件,并添加到window的任务计划中,实现定时拷贝功能。

转者注:路径最好加英文双引号,否则路径中出现空格时提示参数错误。


版权声明

原文链接:https://blog.csdn.net/xfxfxfxfxf666/article/details/101548895

你可能感兴趣的:(问题与解决,windows,脚本语言)