Assume you need to update many Setting.xml in the specified directory and they locate on different sub-folders.
You can copy&past one-by-one if you have a lot of time to do this.
Or you can try below batch script:
SET FileName="C:\Users\Andy\Dropbox\Setting.xml"
FOR /F "usebackq delims==" %%i IN (`dir /b /s Setting.xml `) DO COPY /Y %FileName% "%%i"
|
留言
張貼留言