I am trying to create a Batch file that creates a series of folders in an already-existing directory. If part of the directory already exists, will MKDIR skip over that one and continue down the directory or will it overwrite it?
A sample code is here:
mkdir %cdriveletter%\Steam\SteamApps\common\Counter-Strike Source\cstrike\custom\my_custom_skins\
In that code I want to only create the MyCustomSkins folder but it has to be in that directory. I do not want it to overwrite the stuff before it.
Will this suffice?
mkdir
never deletes any "stuff" - Endoro