19 lines
549 B
Batchfile
19 lines
549 B
Batchfile
::@echo off
|
|
|
|
:: Create needed variables and folders
|
|
SET DRIVELETTER=C
|
|
|
|
:: Russian format
|
|
::SET TIMESTAMP=%date:~6,4%%date:~3,2%%date:~0,2%%time:~0,2%%time:~3,2%
|
|
:: USA format
|
|
SET TIMESTAMP=%date:~10,4%%date:~4,2%%date:~7,2%%time:~0,2%%time:~3,2%
|
|
:: Format on SQL server
|
|
::SET TIMESTAMP=%date:~9,4%%date:~6,2%%date:~3,2%%time:~0,2%%time:~3,2%
|
|
:: Replace spaces by 0
|
|
SET TIMESTAMP=%TIMESTAMP: =0%
|
|
|
|
SET BACKUPS_DIR=%DRIVELETTER%:\temp\logbackups_%TIMESTAMP%
|
|
mkdir %BACKUPS_DIR%
|
|
|
|
:: Move files to backup folder
|
|
move %DRIVELETTER%:\temp\*.* %BACKUPS_DIR% |