You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 15913390 and Dev-PerfTest @ 15913304 [CL 15958515 by Marc Audy in ue5-main branch]
32 lines
533 B
Batchfile
Executable File
32 lines
533 B
Batchfile
Executable File
@echo off
|
|
|
|
echo.
|
|
echo Downloading packet captures from S3
|
|
echo.
|
|
|
|
if "%1" == "" goto getdirectory
|
|
set Directory=%1
|
|
goto getoptions
|
|
|
|
:getdirectory
|
|
set /p Directory=Type the root directory of the zipped captures:
|
|
echo.
|
|
|
|
:getoptions
|
|
if "%2" == "all" GOTO continue
|
|
set Options= --exclude "*" --include "*%2*.ucap.gz"
|
|
|
|
:continue
|
|
call aws s3 sync %3 %Directory% %Options%
|
|
|
|
pushd %CD%
|
|
cd %Directory%
|
|
FOR /D /r %%F in ("*") DO (
|
|
pushd %CD%
|
|
cd %%F
|
|
FOR %%X in (*.gz) DO (
|
|
"C:\Program Files\7-zip\7z.exe" x "%%X" -y -aos
|
|
)
|
|
popd
|
|
)
|
|
popd |