Copy file into ALL subfolders

  • Thread starter Thread starter Martin Skultety
  • Start date Start date
M

Martin Skultety

Hi,

anyone can help me with this?

I do have a folder with hundreds of subfolders and subsubfolders.
There is ONE file which should be copied into every single one of
these folders...

I can't believe that there isn't a trick to do this in Windows
Explorer, without having to program a batch file or similar?

It's easy to display a list of all subfolders (by searching through
the folder), but I would still have to copy that file manually into
every single one of them...

Thanks for your help!
 
Martin said:
Hi,

anyone can help me with this?

I do have a folder with hundreds of subfolders and subsubfolders.
There is ONE file which should be copied into every single one of
these folders...

I can't believe that there isn't a trick to do this in Windows
Explorer, without having to program a batch file or similar?

It's easy to display a list of all subfolders (by searching through
the folder), but I would still have to copy that file manually into
every single one of them...

Thanks for your help!

- - - - - - - - - - begin screen capture Win2000 - - - - - - - - - -
C:\cmd>tree c:\cmd
Folder PATH listing
Volume serial number is 0006FE80 3056:C16B
C:\CMD
????DATA
????demo
????TEST
????TXT
? ????sub1
? ? ????subsub1
? ????sub2
? ????subsub2
????UTIL
????ztxt


C:\cmd>for /r %a in (.) do @copy %temp%\asdlkjg.zzz %a > nul

C:\cmd>dir /s /b asdlkjg.zzz
C:\cmd\asdlkjg.zzz
C:\cmd\DATA\asdlkjg.zzz
C:\cmd\demo\asdlkjg.zzz
C:\cmd\TEST\asdlkjg.zzz
C:\cmd\TXT\asdlkjg.zzz
C:\cmd\TXT\sub1\asdlkjg.zzz
C:\cmd\TXT\sub1\subsub1\asdlkjg.zzz
C:\cmd\TXT\sub2\asdlkjg.zzz
C:\cmd\TXT\sub2\subsub2\asdlkjg.zzz
C:\cmd\UTIL\asdlkjg.zzz
C:\cmd\ztxt\asdlkjg.zzz

C:\cmd>del /s asdlkjg.zzz
Deleted file - C:\cmd\asdlkjg.zzz
Deleted file - C:\cmd\DATA\asdlkjg.zzz
Deleted file - C:\cmd\demo\asdlkjg.zzz
Deleted file - C:\cmd\TEST\asdlkjg.zzz
Deleted file - C:\cmd\TXT\asdlkjg.zzz
Deleted file - C:\cmd\TXT\sub1\asdlkjg.zzz
Deleted file - C:\cmd\TXT\sub1\subsub1\asdlkjg.zzz
Deleted file - C:\cmd\TXT\sub2\asdlkjg.zzz
Deleted file - C:\cmd\TXT\sub2\subsub2\asdlkjg.zzz
Deleted file - C:\cmd\UTIL\asdlkjg.zzz
Deleted file - C:\cmd\ztxt\asdlkjg.zzz

- - - - - - - - - - end screen capture Win2000 - - - - - - - - - -
 
Back
Top