Breadcrumbs 
Learning >> Documentation >> File System >> Creating / deleting directories
 
Recent News
We Want You!
Come and get involved! (And Christmas Party!
[ more ]
Make your own Xbox games!
Learn to make Xbox 360 games
[ more ]
New Committee
A new committee has been appointed.
[ more ]
Making and Deleting Directories
Making and Deleting Directories

mkdir [directory-name]
rmdir [directory-name] # must be an empty directory

Nothing too complicated here. To make a directory simply type:

$ mkdir my_rocket_science_files

And to remove it type:

$ rmdir my_rocket_science_files

To remove a directory using the "rmdir" command, it must be empty. If it is not, you will have to use the "rm" command.

Lets find out how to move and copy directories.