Last active
May 7, 2019 09:01
-
-
Save sphrak/88da711bc7aae97834e3732f2b689dcc to your computer and use it in GitHub Desktop.
Microsoft removed the standard camera import feature in windows > 7 and forces you to use their dumb app. This is what it has come down to.
This file contains hidden or 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
| @echo off | |
| set TARGET=D:\DCIM\path | |
| set DESTINATION=C:\path\to\photos\%date% | |
| echo Copying images from camera %TARGET% to %DESTINATION% | |
| echo d | xcopy /s /y %TARGET% %DESTINATION%\ | |
| echo Removing images from camera.. | |
| del /s /q "%TARGET%\*.JPG" | |
| PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment