This commit is contained in:
Michael H.G. Schmidt 2023-02-14 01:03:07 +01:00
parent 953815a118
commit 6f3e5fff62

View File

@ -73,10 +73,11 @@ echo.
rem check SOURCE for files LARGER 4 GB in case FAT32 was chosen ...
if /i "%DRIVETYPE%" EQU "fat32" (
for /f "tokens=*" %%F in ('"dir /S /B /A-D %W10%"') do if %%~zF GEQ %FOURGB% (
echo ERROR: The file [ %%F ] is greater than 4GB in size, cannot copy this to a FAT32 filesystem!
for /f "tokens=*" %%F in ('"dir /S /B /A-D %W10%"') do if %%~zF GTR %FOURGB% (
echo ERROR: The file [ %%F : %%~zF bytes ] is greater than 4GB in size - cannot copy this to a FAT32 filesystem!
exit /b
)
exit /b
)
set answer=B