标题: [文件操作] 批处理怎样全盘搜索指定文件? [打印本页]
作者: z25856666 时间: 2008-12-19 12:16 标题: 批处理怎样全盘搜索指定文件?
例如在D盘找123.txt 然后得到路径 用在下一条命令里
作者: yslyxqysl 时间: 2008-12-19 18:31
- @echo off&setlocal ENABLEDELAYEDEXPANSION
- for /f "tokens=1 delims= " %%i in ('dir /s C:\wsc*.exe^|find "的目录"') do ^
- set /a tp+=1&set dir!tp!=%%i
复制代码
作者: more 时间: 2008-12-19 19:01
- @echo off
- for /f %%a in ('dir /s/b/a-d "d:\123.txt"') do (set "pth=%%~dpa")
- echo 123.txt的路径为:%pth%
- 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 |