Skip to content

Instantly share code, notes, and snippets.

@spig
Created April 4, 2019 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spig/b7f974d2d00d20c3c72d820a91030674 to your computer and use it in GitHub Desktop.
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
goto :loop
:loop
echo Copying Files
copy *.jpg "C:\Users\vPro Demo\Dropbox\folder"
timeout /t 30
goto :loop
@spig
Copy link
Author

spig commented Apr 4, 2019

Would be more efficient to just move all the jpg files instead of copying them each time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment