标题: [文件操作] 批处理如何查找文件夹里的纯数字文件 [打印本页]
作者: 大大大怪 时间: 2022-10-20 18:02 标题: 批处理如何查找文件夹里的纯数字文件
怎样用批处理把文件夹里的只有两个数字命名的文件找到呢
作者: Batcher 时间: 2022-10-20 18:04
回复 1# 大大大怪
只有两个数字没有扩展名是吗?比如只要 12 不要 12.txt 吗?
作者: 大大大怪 时间: 2022-10-20 18:05
回复 2# Batcher
是的大佬
作者: Batcher 时间: 2022-10-20 18:22
回复 1# 大大大怪
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA- @echo off
- cd /d "%~dp0"
- dir /b /s /a-d | findstr /e "\\[0-9][0-9]"
- pause
复制代码
作者: 大大大怪 时间: 2022-10-20 18:33
回复 4# Batcher
大佬,找不到文件怎么办
作者: xp3000 时间: 2022-10-20 19:17
- @if(0)==(0) echo off
- for /f "tokens=*" %%i in ('dir/s/b/ad *') do (pushd "%%i"&echo 进入"%%i"目录
- for /f "delims=" %%j in ('dir /b/a-d/oN *.* ^| cscript -nologo -e:jscript "%~f0"') do (
- echo %%i 搜索到文件: "%%j"
- popd
- )
- )
- pause & goto :EOF
- @end
- fso = new ActiveXObject("Scripting.FileSystemObject");
- while (!WSH.StdIn.AtEndOfStream) {
- var content = "";
- line = WSH.StdIn.ReadLine();
- arr = line.match(/^([0-9]+)\.[^\.]+$/g);
- if(arr == null)
- {
- continue;
- }
- content += arr
- WScript.Echo(content);
- }
复制代码
&echo 进入"%%i"目录
不需要就删除
作者: 大大大怪 时间: 2022-10-20 19:55
回复 6# xp3000
多谢
作者: aloha20200628 时间: 2022-10-21 12:14
先用通配符??界定一下,findstr下场就爽了...- dir /s/b/a-d ??|findstr /r /c:"[0-9][0-9]"
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |