Hi -
You can utilize xcopy from a command prompt or via batch file to do this.
xcopy syntax goes like this:
xcopy {source} {destination} switches
The three switches I include here do the following:
/E Copy Folders and subfolders even if they are empty
/H Copy Hidden and system files (probably not needed for the context of what you are doing but just in case some are hidden)
/K Copy file attributes (in case you have read only files etc)
Be sure to enclose your source and destination values in quotes to handle spaces in the directory names.
For these examples i'll assume you want to copy the contents of the Sage\Attachments\Inventory directory over to a new location on drive G. That new location is G:\2019Sage\Attachments\Inventory.
For Command Prompt you would type:
xcopy "d:\SAGE\ATTACHMENTS\INVENTORY" "G:\2019SAGE\ATTACHMENTS\INVENTORY" /E /H /K
If you need to repeat the process occasionally you might want to put it in a Batch file. Here would be the contents of the batch file:
echo on
cd\
xcopy "d:\SAGE\ATTACHMENTS\INVENTORY" "G:\2019SAGE\ATTACHMENTS\INVENTORY" /E /H /K
------------------------------
Marc Cregan
Technology Integrators
------------------------------