标题: [文件操作] 批处理求助复制两位数字开头的文件 [打印本页]
作者: 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- @echo off
- cd /d "%~dp0"
- for /f "delims=" %%i in ('dir /b /a-d ^| findstr /b "[0-9][0-9].*.txt"') do (
- copy /y "%%i" "C:\tmp"
- )
复制代码
作者: alexmai 时间: 2022-1-25 17:37
学到了,明白,感谢版主!
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |