Created
August 9, 2015 19:16
-
-
Save blueberrystream/aa03db5f5841aaed3002 to your computer and use it in GitHub Desktop.
DQX アルバム画像zip一括保存ブックマークレット http://dq10tools.appspot.com/zip_images.html でDLしたzipを放り込んだらOneDriveに存在しないものだけコピーするやつ
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
setlocal | |
set ARCHIVER=C:\Program Files (x86)\LhaForge\LhaForge.exe | |
set ONEDRIVE_DQX_DIR=C:\Users\hogehoge\SkyDrive\dqx\思い出アルバム | |
cd /D "%~dp1" | |
"%ARCHIVER%" /e "%~f1" | |
cd "%~n1" | |
for %%f in (*.jpg) do ( | |
if not exist "%ONEDRIVE_DQX_DIR%\%%f" ( | |
xcopy %%f "%ONEDRIVE_DQX_DIR%" | |
) | |
) | |
cd ..\ | |
rmdir /S /Q "%~n1" | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment