From 6f3e5fff62ebfe6b75eba6c311bcd8194332f4c9 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 14 Feb 2023 01:03:07 +0100 Subject: [PATCH] bugfix --- 06_Copy2Stick.cmd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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