asked on
ASKER
ASKER
ASKER
ASKER
Microsoft Disk Operating System (MS-DOS) was an operating system for x86-based personal computers, and traces of it are still found in the Windows operating system. DOS is still used in some embedded systems and for certain legacy 16-bit networks.
TRUSTED BY
@echo off
setlocal
if not exist "%~1" echo %1 does not exist&goto :EOF
for /f %%a in ('dir /b /ad "%~1"') do goto :DIRFOUND
echo This is not a directory
goto :EOF
:DIRFOUND
echo This is a directory
Good Luck,
Steve