Jan 31, 2013

Batch File to Make Folder!

Type this batch code using CoderNet's method of implementing code.

@echo off
echo What should it be called?
set /p input=
md %input%
exit

For the pros:
What if you were to attach this to a batch file in a way that the batch checks for the folder, and if it is there, proceeds with a certain action, such as a Remember Me button?

No comments:

Post a Comment