将文件夹复制到多个文件夹中


0

我有一个包含一些内容的文件夹,我想复制到260个文件夹中。

我想这对于bat文件和for循环是可行的,但我似乎无法理解如何做到这一点。有人热心帮忙吗?:)


你如何列出其他文件夹?我们必须找到它们,或者你有一个文件夹列表?
SeanC

它是另一个文件夹里面的所有文件夹
2012年

Answers:


0

这会将文件复制到每个子文件夹中,1级向下,因此它将复制到dir1但不会复制到dir1\subdir

for /f "delims=" %a in ('dir /ad /b') do copy filename.ext "%a"

如果你需要在每个文件夹中,从你在整个diredctory结构中键入的目录,添加/sdir命令:'dir /s /ad /b'。这将得到dir1dir1\subdir甚至dir1\subdir\a\a\a\a\a\a


0

这对我有用。

FOR /D %%a in ("dst\*") do 
   xcopy "src\*.*"  "%%a" /s /i /c /y
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.