Problems with error checking xcopy command

SLovey 1 Reputation point
2021-09-01T20:55:23.81+00:00

Using the following script to test error codes - want to distinguish between a non existing file and a file that won't fit on destination

if I set XX to 15 which is a non existing file name - I get an errorlevel 4 instead of a 1
if I set XX to 20 which is an existing file name - I get an errorlevel 0 which is correct
if I set XX to 25 which is a file too big to write on the disk - I get the message
Insufficient disk space on current disk.
Insert another disk and type to continue... instead of an errorlevel 4 which is what I would expect

Where am I going wrong - tried switches /c and /q also but no difference
Sorry for my previous code mess-ups

----------------------code--------------

D:
cd
cd Backup_Staging
xcopy Test2021-08-XX.7z E: /y
if errorlevel 4 (
   echo The program returned error level 4 - not enough available disk space
   goto end
)
if errorlevel 1 (
   echo The program returned error level 1 - source doesn't exist
   goto end
)
if errorlevel 0 (
   echo The program returned error level 0 - successful copy
   goto end
)
d:\Bin\sleep 5
:end
echo Done!   
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
36,064 questions
{count} votes