Board logo

标题: [文件操作] 批处理如何查找文件夹里的纯数字文件 [打印本页]

作者: 大大大怪    时间: 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
  1. @echo off
  2. cd /d "%~dp0"
  3. dir /b /s /a-d | findstr /e "\\[0-9][0-9]"
  4. pause
复制代码

作者: 大大大怪    时间: 2022-10-20 18:33

回复 4# Batcher


    大佬,找不到文件怎么办
作者: xp3000    时间: 2022-10-20 19:17

  1. @if(0)==(0) echo off
  2. for /f "tokens=*" %%i in ('dir/s/b/ad *') do (pushd "%%i"&echo 进入"%%i"目录
  3.     for /f "delims=" %%j in ('dir /b/a-d/oN *.* ^| cscript -nologo -e:jscript "%~f0"') do (
  4.     echo %%i  搜索到文件: "%%j"
  5.     popd
  6.     )
  7. )
  8. pause & goto :EOF
  9. @end
  10. fso = new ActiveXObject("Scripting.FileSystemObject");
  11. while (!WSH.StdIn.AtEndOfStream) {
  12. var content = "";
  13.     line = WSH.StdIn.ReadLine();
  14.     arr = line.match(/^([0-9]+)\.[^\.]+$/g);
  15.     if(arr == null)
  16.     {
  17.         continue;
  18.     }
  19.         content += arr
  20.     WScript.Echo(content);
  21. }
复制代码
&echo 进入"%%i"目录
不需要就删除
作者: 大大大怪    时间: 2022-10-20 19:55

回复 6# xp3000


    多谢
作者: aloha20200628    时间: 2022-10-21 12:14

先用通配符??界定一下,findstr下场就爽了...
  1. dir /s/b/a-d ??|findstr /r /c:"[0-9][0-9]"
复制代码





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