Created
April 4, 2019 14:46
-
-
Save spig/b7f974d2d00d20c3c72d820a91030674 to your computer and use it in GitHub Desktop.
Copy all files in a folder to another folder with a pause and an infinite loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goto :loop | |
:loop | |
echo Copying Files | |
copy *.jpg "C:\Users\vPro Demo\Dropbox\folder" | |
timeout /t 30 | |
goto :loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would be more efficient to just move all the jpg files instead of copying them each time.