编写一个bat文件实现以下功能:检测文件夹内是否存在某个文件,如果存在,将该文件复制到另一个文件夹中
时间: 2023-03-05 09:43:04 浏览: 170
根据文件名创建文件件,将文件移动到对应的文件夹中
@echo off
set source=C:\source\
set target=C:\target\
set filename=test.txtif exist %source%%filename% (
copy %source%%filename% %target%
)
阅读全文