please include the command that would be used in LINUX
Asked
Active
Viewed 250 times
2 Answers
1
You can move to the Documents folder first then create a directory:
cd ~/Documents
mkdir mynewdirectory
or you can do it all with absolute paths from wherever you are in your system:
mkdir ~/Documents/mymnewdirectory
(The ~ is a shortcut for your home directory, in which your Documents directory resides).