I\'m a newbie, so bear with me...
I am trying to copy all .doc files that I have scattered throughout several subdirectories of one main directory into
.doc
Just use the XCOPY command with recursive option
xcopy c:\*.doc k:\mybackup /sy
/s will make it "recursive"