Initial upload

Simple Windows batch file to copy the translationStudio folder to a time-stamped folder on the desktop.
This commit is contained in:
John Wood 2017-10-20 14:38:34 +00:00
parent bd7d365b2e
commit 2d9c23b34f
1 changed files with 5 additions and 0 deletions

5
tsbackup.bat Normal file
View File

@ -0,0 +1,5 @@
SET MYTIME=%date%%time%
call set MYTIME=%%MYTIME:/=%%%
call set MYTIME=%%MYTIME::=%%%
mkdir "%userprofile%/Desktop/translationstudio_backup%MYTIME%
copy "%appdata%/../local/translationstudio" "%userprofile%/Desktop/translationstudio_backup%MYTIME%/"