Windows 查找txt后缀 文件复制

Windows 查找文件 并且复制目录

for /f "delims==" %a in ('dir /b /s F:F*.TXT')do copy /-y "%a" F:FF /Y

# 源文件目录 F:F
# 查找之后要复制的目录 F:FF
# /Y 确定
原文地址:https://www.cnblogs.com/sharesdk/p/10617141.html