当前位置: 首页 > 工具软件 > iCopy > 使用案例 >

windows下copy批处理命令

公良弘毅
2023-12-01

收藏备用

 

//将D:\source 下的所有文件 copy到D:\dest\

@echo off
for /r D:\source %%i in (*.*) do if exist %%i copy "%%i" D:\dest\ /y
pause

 类似资料: