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
Things like these are why I switched to Powershell. Try it out, it's fun:
Get-ChildItem -Recurse -Include *.doc | % { Copy-Item $_.FullName -destination x:\destination }