解释问题的最简单方法是举个例子。
我想做这样的事情:
file x in /path_1/A/x copy in /path_2/A/
file x in /path_1/B/x copy in /path_2/B/
...
...
file x in /path_1/Z/x copy in /path_2/Z/
在命令行中使用Windows中的脚本。
答案 0 :(得分:0)
@echo off
cd /path_1
for /D %%d in (*) do (
if exist "%%d/x" (
if not exist "/path_2/%%d" md "/path_2/%%d"
copy "%%d/x" "/path_2/%%d"
)
)