Board logo

标题: [文件操作] 修改代码 [打印本页]

作者: xt0883    时间: 2012-8-27 10:02     标题: 修改代码

@echo off
echo 请先将*.txt重命名为1.txt并和批处理在同一目录下,文档里的文件名不能在同一行并要有后缀名
set /p lj=请输入要拷贝到的路径(X:\文件夹):
md "%lj%"
for /f "skip=1" %%i in ('^(wmic logicaldisk where drivetype^='3' get name^)') do (echo 正在%%i\中搜索......
  echo %%i|findstr ":">nul&&(
    for %%j in (1.txt) do (
      for /f "delims=" %%a in (%%j) do (
        for /f "delims=" %%b in ('dir /a /b /s "%%i\%%a"') do (
          for /f "tokens=1-3" %%i in ('attrib "%%b"') do (
            echo %%i|findstr /i "\<s\> \<h\> \<sh\>">nul&&(attrib -s -h "%%b"&set abc==)
            echo %%j|findstr /i "\<s\> \<h\> \<sh\>">nul&&(attrib -s -h "%%b"&set abc==)
            echo %%k|findstr /i "\<s\> \<h\> \<sh\>">nul&&(attrib -s -h "%%b"&set abc==)
          )
          if %%j equ 1.txt copy "%%b" "%lj%"
   
          if defined abc (attrib +s +h "%%b"&set abc=)
        )
      )
    )
  )
)
pause


for /f "skip=1" %%i in ('^(wmic logicaldisk where drivetype^='3' get name^)')改为for  %%i in (c d e f g)后用不了,还要修改哪里吗,请指教下,谢谢
作者: forfiles    时间: 2012-8-27 10:12

你把@echo off删掉,自己看看执行过程就明白了。
作者: xt0883    时间: 2012-9-14 13:46

回复 1# xt0883


   我是菜鸟看不出来,这是别人的代码,我只是想在原本的基础上改下




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