Board logo

标题: [文件操作] 批处理求助复制两位数字开头的文件 [打印本页]

作者: alexmai    时间: 2022-1-25 16:31     标题: 批处理求助复制两位数字开头的文件

批处理,copy , 前两个字符是 数字*.txt 到c:\tmp
作者: Batcher    时间: 2022-1-25 17:27

回复 1# alexmai


请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/6lbb97qUOs1sTyKJfN0ZEQ
  1. @echo off
  2. cd /d "%~dp0"
  3. for /f "delims=" %%i in ('dir /b /a-d ^| findstr /b "[0-9][0-9].*.txt"') do (
  4.     copy /y "%%i" "C:\tmp"
  5. )
复制代码

作者: alexmai    时间: 2022-1-25 17:37

学到了,明白,感谢版主!




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2