I want to see the files that are not in the temporary file 'output.tmp' with this code but it does not work.
FOR /f "Delims=" %%A in (
'Dir /B/A-D *.*^|Findstr /VEIL /G:output.tmp'
) Do echo "%%A"
I want to see the files that are not in the temporary file 'output.tmp' with this code but it does not work.
FOR /f "Delims=" %%A in (
'Dir /B/A-D *.*^|Findstr /VEIL /G:output.tmp'
) Do echo "%%A"