Creating a directory programmatically
-
Anybody here know how to create a directory with spaces? Just like "C:\something\something more"?
-
Anybody here know how to create a directory with spaces? Just like "C:\something\something more"?
MkDir "C:\something\something more" However the folder something would have to exist. So it would be MkDir "C:\something" MkDir "C:\something\something more" if both didn't exist It's so true.
-
Anybody here know how to create a directory with spaces? Just like "C:\something\something more"?
You could also use api functions http://www.mentalis.org/apilist/CreateDirectoryEx.shtml http://www.mentalis.org/apilist/CreateDirectory.shtml Again you have to create the dirs in steps. It's so True.
-
Anybody here know how to create a directory with spaces? Just like "C:\something\something more"?