Files
UnrealEngineUWP/Engine/Plugins/Compression/OodleNetwork/ExtractAllArchives.bat
Marc Audy 01b7c9f4f5 Merge UE5/RES @ 15958325 to UE5/Main
This represents UE4/Main @ 15913390 and Dev-PerfTest @ 15913304

[CL 15958515 by Marc Audy in ue5-main branch]
2021-04-08 14:32:07 -04:00

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