Posts: 148
cousinlucky
Joined: 24 Aug 2012
#1
My home folder contains a folder for documents. I would like to know how to create other folders.
Can this be done? Thanks!!
Posts: 1,308
BitJam
Joined: 31 Aug 2009
#2
If you are in the GUI there should be a"Files" icon in the top left corner of the desktop. Click on that then right click on the white background of the new window and select new --> directory.
Posts: 148
cousinlucky
Joined: 24 Aug 2012
#3
Thank You Very Much, BJ!!
Posts: 137
duncan_mk
Joined: 19 Sep 2012
#4
OR you can open the terminal (it should open in your home directory - the prompt of which should look a bit like this:

cousinlucky@antiX12:~
$

where: 'cousinlucky' is you
and: 'antiX12:' is the name you've given your computer
and The tilde (~) means that you are in your home directory - if it's anything else, type 'cd ~' at the command prompt ($), this will return you to the home directory)

Then create your new directory/folder whatever

$ mkdir -v Downloads

the '-v' will tell you the jobs done.

If you want want to create a series of recursive directories, use the '-p' or '--parents' switch. ie:

$mkdir -vp Downloads/SaucyPics/Gina_Lollobrigida

which will create all 3 directories for you. Hope this helps,

dmk