I want to copy from a wildcard source folder to a destination folder:
xcopy a:\\parentfolder\\n* x:\\parentfolder
Only folders starting wit
If you first CD to the folder you want to copy it will work:
a: cd \parentfolder xcopy /s n*.* x:\parentfolder