mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
617ed25a19
- Removed commandline switch "version" - Added MinGit for determining version information during compile process - Added sigcheck to determine version of the executable
47 lines
955 B
Batchfile
47 lines
955 B
Batchfile
:: Usage:
|
|
:: call download-file-wildcard.bat url file-wildcard download-path variable
|
|
|
|
if "%~4"=="" (
|
|
echo.
|
|
echo Parameter error.
|
|
exit /B 1
|
|
)
|
|
|
|
if "%EnvTempPath%"=="" (
|
|
echo.
|
|
echo Environment error.
|
|
exit /B 1
|
|
)
|
|
|
|
setlocal
|
|
|
|
set Url=%~1
|
|
set FileWildcard=%~2
|
|
set DownloadPath=%~3
|
|
set Var=%~4
|
|
set File=
|
|
|
|
call "%~dp0remove-dir.bat" "%EnvTempPath%"
|
|
mkdir "%EnvTempPath%"
|
|
|
|
"%EnvWgetExe%" --recursive --continue --no-directories --no-parent -A "%FileWildcard%" --directory-prefix="%EnvTempPath%" "%Url%"
|
|
|
|
if errorlevel 1 (
|
|
call "%~dp0remove-dir.bat" "%EnvTempPath%"
|
|
endlocal & set %Var%=
|
|
exit /B %ERRORLEVEL%
|
|
)
|
|
|
|
for %%A in (%EnvTempPath%\%FileWildcard%) do set File=%%~nxA
|
|
if "%File%"=="" (
|
|
call "%~dp0remove-dir.bat" "%EnvTempPath%"
|
|
endlocal & set %Var%=
|
|
exit /B %ERRORLEVEL%
|
|
)
|
|
|
|
move "%EnvTempPath%\%File%" "%DownloadPath%"
|
|
call "%~dp0remove-dir.bat" "%EnvTempPath%"
|
|
|
|
endlocal & set %Var%=%File%
|
|
exit /B 0
|