View Single Post
Old 10-02-2006, 01:18 AM  
notabook
Confirmed User
 
Join Date: Apr 2006
Location: Not a Library!
Posts: 9,748
Why do people constantly blame the operating system for their own ineptness? A simple command line at the cmd prompt will do the trick...

Say in C drive you have a folder named test3, and in that folder you have 5 sub-folders called t1, b2, c3, h4, k5. Also in C: you have a file called test1.txt. Typing the following at the command prompt:

for /R C:\test3 %a in (.) do copy C:\test1.txt %a

will copy the file C:\test1.txt to folder C:\test3 and any sub-folder in C:\test3 (so now t1, b2, c3, h4, and k5 will have test1.txt in it).
__________________
notabook is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote