Board logo

标题: [文件操作] 批处理如何搜索特定文件夹? [打印本页]

作者: BS0小陈    时间: 2011-6-18 23:13     标题: 批处理如何搜索特定文件夹?

我想找到c盘下的“Temporary Internet Files”文件夹用dos进行收索,不行啊
我的代码:
dir /ashrd /s c:\|findstr /i "Temporary Internet Files"
结果没反应。难道没有?汗!
作者: 601997526    时间: 2011-6-18 23:35

显示c盘下的“Temporary Internet Files”文件夹及子文件夹(包括文件)
  1. dir /b /a /s c:\|findstr /i /c:"Temporary Internet Files"
复制代码

作者: vsbat    时间: 2011-6-18 23:54

  1. dir /ad /s /b  "C:\Temporary Internet Files"
复制代码

作者: BS0小陈    时间: 2011-6-22 09:13

那如何用这样的方法收索d:盘里的*.mp3啊 试了一下不行啊
我的代码:
dir /s /a-d d:\|dindstr "*.mp3"
结果悲剧了。我就直接执行了:
dir /s /a-d
发现列出来的所有文件中没有.mp3的。错在哪里了?
我所有的音乐都放在 d:\我的文档\我的音乐  里
作者: BS0小陈    时间: 2011-6-22 09:17

关键是要路径 知道我要找的在哪里
作者: CrLf    时间: 2011-6-22 13:29

  1. dir /s /a-d /b "d:\*.mp3"
复制代码

作者: cxmzlxb    时间: 2011-6-22 13:42

本帖最后由 cxmzlxb 于 2011-6-24 12:39 编辑
  1. @echo off
  2. for /r d:\ %%i in (*.mp3)do echo %%i>>d:\list.txt
  3. start notepad d:\list.txt
  4. exit
复制代码
自己扩展一下就可以了!很简单
作者: cxmzlxb    时间: 2011-6-22 13:43

示例:
list.txt

d:\BurnInTest\Testsound.mp3




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