• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Is there an app that can grab files by extension from another local drive

I occasionally see hard drives in the course of my day with various files I'd like to have copied onto my drive. However, I don't want to search through alot of junk just to get a few things, too time consuming.


Is there an app that will allow me to automatically copy over certain file extensions?
 
XCOPY. Type xcopy /? at the command line to take a look at all of the options.

As an example: copy all word files to backup directory:
xcopy C:\*.doc H:\backup\
 
Back
Top