Board logo

标题: [文件操作] 批处理怎样全盘搜索指定文件? [打印本页]

作者: z25856666    时间: 2008-12-19 12:16     标题: 批处理怎样全盘搜索指定文件?

例如在D盘找123.txt 然后得到路径 用在下一条命令里
作者: yslyxqysl    时间: 2008-12-19 18:31

  1. @echo off&setlocal ENABLEDELAYEDEXPANSION
  2. for /f "tokens=1 delims= " %%i in ('dir /s C:\wsc*.exe^|find "的目录"') do ^
  3. set /a tp+=1&set dir!tp!=%%i
复制代码

作者: more    时间: 2008-12-19 19:01

  1. @echo off
  2. for /f %%a in ('dir /s/b/a-d "d:\123.txt"') do (set "pth=%%~dpa")
  3. echo 123.txt的路径为:%pth%
  4. echo.&pause
复制代码

作者: yuanyannian    时间: 2012-2-12 20:27

3楼的非常好,谢谢!
作者: find    时间: 2012-2-13 13:10

回复 4# yuanyannian


http://www.bathome.net/thread-3465-1-1.html




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