diff --git a/06_Copy2Stick.cmd b/06_Copy2Stick.cmd index fcbc8f9..a004b9b 100644 --- a/06_Copy2Stick.cmd +++ b/06_Copy2Stick.cmd @@ -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