mirror of
https://github.com/OMGeeky/downloader.git
synced 2025-12-27 14:59:17 +01:00
11 lines
693 B
Batchfile
11 lines
693 B
Batchfile
SET target_folder=C:\Users\frede\Documents\VM\Shared\in\CLionProjects
|
|
SET temp_source_folder=C:\Users\frede\CLionProjects
|
|
|
|
SET temp_source_to_copy=google_bigquery\
|
|
xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y
|
|
SET temp_source_to_copy=tests\twitch_backup\
|
|
xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y
|
|
SET temp_source_to_copy=exponential_backoff\
|
|
xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y
|
|
echo DONE
|