4 lines
268 B
Batchfile
4 lines
268 B
Batchfile
if exist input.txt echo The following file called input.txt exists.
|
|
if exist \input.txt echo The following file called \input.txt exists.
|
|
if exist docs echo The following directory called docs exists.
|
|
if exist \docs\ echo The following directory called \docs\ exists.
|