How to make a directory (or "folder") at the command line: This is similar to DOS's MD command, use mkdir instead, here are equivalents: md stuff becomes mkdir stuff md "directory name" becomes mkdir "directory name" md ..\..\stuff becomes mkdir ../../stuff Note the proper use of slashes, Micro$oft did backslashes only to put a stamp on their stuff. The internet "/" has always been correct. ---------------------------------------------------------------------------------------------------------------------