Is it possible to have a directory (named A, for example) that I can save documents to and once they are saved to that folder, an automatic copy will be sent to 2 different directories (directories B and C)?
copy and paste this into NOTEPAD, save as a .bat file (instead of .txt) then schedule it to run every so often in the task scheduler (i'd say hourly unless you need the info that to update that often)
Code:
cd ..
copy c:\DIRECTORYA\*.* c:\DIRECTORYB\ /y
copy c:\DIRECTORYA\*.* c:\DIRECTORYC\ /y
just substitute the directory names/locations with what you want. If you want to copy the files to different shared folders over the network, do this
Code:
cd ..
copy c:\DIRECTORYA\*.* \\COMPUTER1\sharedfoldername\ /y
copy c:\DIRECTORYA\*.* \\COMPUTER2\sharedfoldername\ /y
The only thing you have to know is how to find the answer.
If it weren't for users, computers would work just fine....If computers worked I'd be unemployed!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.