[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
回复 14# DAIC

下面的代码不需要输入文件夹名。我意思是批处理程序所在的目录文件夹名包含空格。比如D:\Program Files\1.bat ,运行1.bat就会出错。
  1. @echo off & setlocal enabledelayedexpansion
  2. ::改成自己的路径,如“D:\Test”
  3. set "source=%~dp01"
  4. ::改成自己的路径
  5. set "target=%~dp02"
  6. echo;开始复制,稍等。。。。
  7. for /f "delims=" %%i in ('dir /b /s /a-d %source%\*.mp3') do (
  8. set "file=%%~fi"
  9. echo;复制文件———!file!
  10. for /f "usebackq" %%a in ('%source%') do (
  11. set "ref=!file:%%a\=!"
  12. echo;f|xcopy /y "!file!" "%target%\!ref!">nul 2>&1
  13. )
  14. )
  15. echo;完成。
  16. pause & exit /b
复制代码

TOP

回复 15# 回家路上
不好意思,见笑了,真是不懂。

TOP

回复 16# meiszp


    dir /b /s /a-d "%source%\*.mp3"

TOP

回复 15# 回家路上
您好!代码在使用时如果文件夹名有空格,就会多生成一层。此代码不影响使用,就想弄明太是什么原因造成的。
  
  1. @echo off & setlocal enabledelayedexpansion
  2. set "source=%~dp0"
  3. set "target=%~dp0copy"
  4. echo;开始复制,稍等。。。。
  5. for /f "delims=" %%i in ('dir /b /s /a-d "%source%\*.txt"') do (
  6. set "file=%%~fi"
  7. if "!target:%%~fi=!" equ "!target!" (
  8. echo;复制文件———!file!
  9. for /f "usebackq" %%a in ('%source%') do (
  10. set "ref=!file:%%a=!"
  11. echo;f|xcopy /y "!file!" "%target%\!ref!">nul 2>&1
  12. )
  13. )
  14. )
  15. echo;完成。
  16. pause & exit /b
复制代码


└─aaabbb
    │  提取txt文件.bat
    │  
    ├─copy
    │  ├─s
    │  │  ├─dlc1.1f
    │  │  │      1.1.txt
    │  │  │      
    │  │  └─dlc6.4
    │  │          6.4.txt
    │  │         
    │  └─t
    │      ├─dlc1.4f
    │      │      1.4.txt
    │      │      
    │      ├─dlc2.1f
    │      │      2.1.txt
    │      │      
    │      ├─dlc3.1
    │      │      3.1.txt
    │      │      
    │      └─dlc4.1f
    │              4.1.txt
    │              
    ├─s
    │  ├─dlc1.1f
    │  │      1.1.txt
    │  │      
    │  └─dlc6.4
    │          6.4.txt
    │         
    └─t
        ├─dlc1.4f
        │      1.4.txt
        │      
        ├─dlc2.1f
        │      2.1.txt
        │      
        ├─dlc3.1
        │      3.1.txt
        │      
        └─dlc4.1f
                4.1.txt
               

└─aaa bbb
    │  提取txt文件.bat
    │  
    ├─copy
    │  └─ bbb
    │      ├─s
    │      │  ├─dlc1.1f
    │      │  │      1.1.txt
    │      │  │      
    │      │  └─dlc6.4
    │      │          6.4.txt
    │      │         
    │      └─t
    │          ├─dlc1.4f
    │          │      1.4.txt
    │          │      
    │          ├─dlc2.1f
    │          │      2.1.txt
    │          │      
    │          ├─dlc3.1
    │          │      3.1.txt
    │          │      
    │          └─dlc4.1f
    │

TOP

本帖最后由 meiszp 于 2015-9-15 20:58 编辑

回复 7# aa77dd@163.com
在提取含有%类型的文件时,比如.%23,不能实现提取,自己看批处理都是使用两个%,就加了一个,改为.%%23成功了,可以解释下原因吗?

最近也看来些入门的教程,着实摸不着头脑,比编程语言抽象多了。如果可以的话,麻烦对之前的几个代码逐句解释下,谢谢!

TOP

回复 15# 回家路上
大侠解释下20楼的问题呗。

TOP

返回列表