本帖最后由 batman 于 2011-6-21 18:00 编辑
这样的文件夹如果只有一个的话:- @echo off&setlocal enabledelayedexpansion
- set "fd=%cd%"
- push d:\progra~1
- for /d %%a in (mylive*) do (
- for /f "tokens=2 delims=." %%b in ("%%~na") do (
- set "str=%%b"
- if "!str:~39!" neq "" if "!str:~40!" equ "" xcopy /e /s /y "%fd%\sandbox" "%%a\sandbox\"
- )
- )
- popd
复制代码
|