bugfix
This commit is contained in:
parent
f36aa141f1
commit
5b56e8c1e0
@ -45,10 +45,6 @@ echo FTP_PASS=xxxxxx
|
|||||||
echo ++++++++++++++++++
|
echo ++++++++++++++++++
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem cleanup ...
|
|
||||||
del /F /Q remotesize 2>nul
|
|
||||||
del /F /Q localsize 2>nul
|
|
||||||
|
|
||||||
echo disabling Windows defender for PATH [ %USERPROFILE% ] ...
|
echo disabling Windows defender for PATH [ %USERPROFILE% ] ...
|
||||||
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %USERPROFILE%
|
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %USERPROFILE%
|
||||||
echo.
|
echo.
|
||||||
@ -61,57 +57,56 @@ rem ###################################
|
|||||||
|
|
||||||
FOR /F "tokens=1,2 delims=, " %%E in (%LISTFILE%) do (
|
FOR /F "tokens=1,2 delims=, " %%E in (%LISTFILE%) do (
|
||||||
|
|
||||||
|
call :cleanup
|
||||||
|
|
||||||
rem get local file size ...
|
rem get local file size ...
|
||||||
FORFILES /M %%F /C "cmd /C echo Content-Length: @fsize >%LOCALSIZE%"
|
FORFILES /M %%F /C "cmd /C echo Content-Length: @fsize >%LOCALSIZE%"
|
||||||
|
|
||||||
rem get remote file size ...
|
rem get remote file size ...
|
||||||
curl -u %FTP_USER%:%FTP_PASS% -s -I ftp://%FTP_SERVER%/%FTP_PATH%/%%F | findstr Content-Length >%REMOTESIZE%
|
curl -u %FTP_USER%:%FTP_PASS% -s -I ftp://%FTP_SERVER%/%FTP_PATH%/%%F | findstr Content-Length >%REMOTESIZE%
|
||||||
|
|
||||||
call :compare %%F
|
call :compare %%F
|
||||||
|
|
||||||
)
|
)
|
||||||
|
GOTO :cleanup
|
||||||
rem =====
|
GOTO :END
|
||||||
rem END
|
|
||||||
rem =====
|
|
||||||
GOTO END
|
|
||||||
|
|
||||||
|
|
||||||
:compare
|
:compare
|
||||||
rem COMPARE both ...
|
rem COMPARE both ...
|
||||||
fc /W %LOCALSIZE% %REMOTESIZE%
|
fc /W %LOCALSIZE% %REMOTESIZE% 1>nul 2>nul
|
||||||
|
|
||||||
if %ERRORLEVEL% GTR 0 (
|
if %ERRORLEVEL% GTR 0 (
|
||||||
|
|
||||||
rem get it with curl ...
|
rem get it with curl ...
|
||||||
echo.
|
echo.
|
||||||
echo getting: [ %1 ]
|
echo getting: [ %1 ]
|
||||||
curl -u %FTP_USER%:%FTP_PASS% -L ftp://%FTP_SERVER%/%FTP_PATH%/%1 --output %1
|
curl -u %FTP_USER%:%FTP_PASS% -L ftp://%FTP_SERVER%/%FTP_PATH%/%1 --output %1
|
||||||
|
|
||||||
rem success ?
|
|
||||||
if NOT EXIST %1 (
|
|
||||||
echo ERROR: couldn't get %1!
|
|
||||||
) else (
|
|
||||||
rem check size (it SHOULD NOT be 0!)
|
|
||||||
FORFILES /M %1 /C "cmd /C if @fsize EQU 0 echo ERROR: file @relpath is zero size!"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
rem success ?
|
||||||
|
if NOT EXIST %1 (
|
||||||
|
echo ERROR: couldn't get %1!
|
||||||
) else (
|
) else (
|
||||||
echo OK. File [ %1 ] is same size.
|
rem check size (it SHOULD NOT be 0!)
|
||||||
)
|
FORFILES /M %1 /C "cmd /C if @fsize EQU 0 echo ERROR: file @relpath is zero size!"
|
||||||
|
)
|
||||||
|
|
||||||
|
) else (
|
||||||
|
echo OK. File [ %1 ] is same size.
|
||||||
|
)
|
||||||
goto :eof
|
goto :eof
|
||||||
|
|
||||||
|
:cleanup
|
||||||
|
del /F /Q remotesize 2>nul
|
||||||
|
del /F /Q localsize 2>nul
|
||||||
|
goto :eof
|
||||||
|
|
||||||
:USAGE
|
:USAGE
|
||||||
echo "usage: %0 <LISTFILE>"
|
echo "usage: %0 <LISTFILE>"
|
||||||
echo LISTFILE = basic, browser, optional or other
|
echo LISTFILE = basic, browser, optional or other
|
||||||
echo.
|
echo.
|
||||||
|
goto :END
|
||||||
|
|
||||||
|
rem =====
|
||||||
|
rem END
|
||||||
|
rem =====
|
||||||
:END
|
:END
|
||||||
echo.
|
|
||||||
echo cleanup ...
|
|
||||||
del /F /Q remotesize 2>nul
|
|
||||||
del /F /Q localsize 2>nul
|
|
||||||
echo.
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user