- How to create a directory or folder
- Creating a folder in Microsoft Windows
- My Computer or Windows Explorer
- Windows desktop
- Create a new folder using a shortcut key
- Windows command line
- Creating a directory in MS-DOS and the Windows command line
- Related pages
- Create a directory with a batch file
- Creating a directory in Linux, Unix, and their variants
- Creating a folder and directory in Microsoft Windows 3.X
- File Manager
- MS-DOS
- Creating a folder in macOS X
- Desktop folder
- Create a folder in a directory
- Как создавать каталоги в Linux (команда mkdir)
- Синтаксис команды Linux mkdir
- Как создать новый каталог
- Как создать родительские каталоги
- Как установить разрешения при создании каталога
- Как создать несколько каталогов
- Выводы
- Create Folder in Linux Create Directory in Linux [mkdir Command]
- mkdir command [Make Directory Command]
- Make directory command options
- How to Create Directory in Linux
- Creating multiple directories
- Creating a parent directory
- Setting permission for directory while creating the directory
- Verifying the directories
- How to Create Folder in Linux? [Step By Step Guide]
- rmdir command/rm command to Remove the Directory/Folder in Linux
- Conclusion
How to create a directory or folder
There are multiple ways to create or add a folder, subfolder, directory, and subdirectory on a computer. The methods depend on the operating system or where the directory is being created. Select a link below for steps on how to create a directory and folder in each major operating system.
Creating a folder in Microsoft Windows
My Computer or Windows Explorer
- Open My Computer or Windows Explorer.
- Open the drive or folder where you’d like to create the new folder; for example, the C: drive. If you do not want to create a folder in the root directory, browse to the location of your choosing.
- In Windows 10 on the Home tab, click the New folder icon. In Windows 7 and earlier on the file menu bar, select File and then Folder.
In all versions of Windows, you can also right-click with your mouse on a blank portion of the folder, select New and then Folder.
If you’re using Windows 7 or earlier and do not see the file menu bar at the top of Windows Explorer, press the Alt key and it should become visible.
Windows desktop
- Navigate to the Windows desktop.
- Right-click any blank portion of the desktop.
- In the menu that appears (like that shown in the picture), click New and then Folder.
- A new folder appears. Type the name of the folder you want to use and then press Enter .
Create a new folder using a shortcut key
While in Windows Explorer, you can press Ctrl + Shift + N to create a new folder without using the mouse.
Windows command line
See the following MS-DOS and Windows command line user section for information about creating a directory in the Windows command line.
Creating a directory in MS-DOS and the Windows command line
It is more appropriate to use «directory» instead of «folder» when referring to the command line.
To create a directory in MS-DOS or the Windows command line (cmd), use the md or mkdir MS-DOS command. For example, below we are creating a new directory called «hope» in the current directory.
You can also create multiple new directories in the current directory with the md command. In the next example, we are creating three new directories, called «user1,» «user2,» and «user3,» in the current directory.
If you want to create a directory with spaces, you need to surround the directory name with quotes. In the example below, we are creating a directory called «my example directory» in the current directory.
To create a directory in the parent directory, without first moving into that directory, you can use the command below. This example moves back one directory to create the «example» directory.
To create a subdirectory in a different directory without moving it, use a command similar to the example below. This command creates a «test» directory in the hope directory.
Once a directory is created, you can use the cd command to change the directory and move into that directory.
To make a directory in another drive without moving into that drive, use a command similar to the example below. This command creates an «example» directory on the F: drive. The drive letter «f:» can be substituted from any drive letter.
Related pages
Create a directory with a batch file
A batch file is a series of commands that can be entered in the command line. Therefore, you can use any of the examples from the section above in the batch file to create a new folder.
Creating a directory in Linux, Unix, and their variants
It is more appropriate to use «directory» instead of «folder» when in a command line.
You must have the permissions to create a directory outside of your home directory.
To create a directory in Linux, Unix, or any variant, use the mkdir Linux and Unix command. For example, below we are creating a new directory called hope in the current directory.
Once the directory is created, you can use the cd command to change the directory and move into that directory.
If you want to change the permissions of a directory after its been created, use the chmod command.
Creating a folder and directory in Microsoft Windows 3.X
File Manager
- Open File Manager
- Open the folder where you’d like to place the new folder and on the top menu of File Manager, select File and then new folder.
MS-DOS
See the above MS-DOS user section for information about creating a directory in MS-DOS.
Creating a folder in macOS X
Desktop folder
- Navigate to the macOS desktop.
- Right-click (tap two fingers on the mouse) any blank space on the desktop.
- Select New Folder from the drop-down menu that appears.
- Name the folder, and then press Return .
Create a folder in a directory
- Open Finder and navigate to the directory where you’d like to create the folder.
- Click File in the upper-left corner of the screen.
- Select New Folder in the drop-down menu that appears.
- Name the folder, and then press Return .
Users may also press the shortcut key combination Command + Shift + N to create a new folder.
To create a directory in the Terminal command line, see the Linux steps.
Источник
Как создавать каталоги в Linux (команда mkdir)
В системах Linux вы можете создавать новые каталоги либо из командной строки, либо с помощью файлового менеджера вашего рабочего стола. Команда, позволяющая создавать каталоги (также известные как папки), — это mkdir .
В этом руководстве рассматриваются основы использования команды mkdir , включая повседневные примеры.
Синтаксис команды Linux mkdir
Синтаксис команды mkdir следующий:
Команда принимает в качестве аргументов одно или несколько имен каталогов.
Как создать новый каталог
Чтобы создать каталог в Linux, передайте имя каталога в качестве аргумента команды mkdir . Например, чтобы создать новый каталог newdir вы должны выполнить следующую команду:
Вы можете убедиться, что каталог был создан, перечислив его содержимое с помощью команды ls :
При указании только имени каталога без полного пути он создается в текущем рабочем каталоге.
Текущий рабочий каталог — это каталог, из которого вы запускаете команды. Чтобы изменить текущий рабочий каталог, используйте команду cd .
Чтобы создать каталог в другом месте, вам необходимо указать абсолютный или относительный путь к файлу родительского каталога. Например, чтобы создать новый каталог в каталоге /tmp вы должны ввести:
Если вы попытаетесь создать каталог в родительском каталоге, в котором у пользователя недостаточно прав, вы получите сообщение об ошибке Permission denied :
Параметр -v ( —verbose ) указывает mkdir печатать сообщение для каждого созданного каталога.
Как создать родительские каталоги
Родительский каталог — это каталог, который находится над другим каталогом в дереве каталогов. Чтобы создать родительские каталоги, используйте параметр -p .
Допустим, вы хотите создать каталог /home/linuxize/Music/Rock/Gothic :
Если какой-либо из родительских каталогов не существует, вы получите сообщение об ошибке, как показано ниже:
Вместо того, чтобы создавать недостающие родительские каталоги один за другим, вызовите команду mkdir с параметром -p :
Когда используется опция -p , команда создает каталог, только если он не существует.
Если вы попытаетесь создать каталог, который уже существует, а параметр -p не mkdir , mkdir выведет сообщение об ошибке File exists :
Как установить разрешения при создании каталога
Чтобы создать каталог с определенными разрешениями, используйте параметр -m ( -mode ). Синтаксис для назначения разрешений такой же, как и для команды chmod .
В следующем примере мы создаем новый каталог с разрешениями 700 , что означает, что только пользователь, создавший каталог, сможет получить к нему доступ:
Когда опция -m не используется, вновь созданные каталоги обычно имеют права доступа 775 или 755 , в зависимости от значения umask .
Как создать несколько каталогов
Чтобы создать несколько каталогов, укажите имена каталогов в качестве аргументов команды, разделенные пробелом:
Команда mkdir также позволяет создать сложное дерево каталогов с помощью одной команды:
Приведенная выше команда создает следующее дерево каталогов :
Выводы
Команда mkdir в Linux используется для создания новых каталогов.
Для получения дополнительной информации о mkdir посетите страницу руководства mkdir .
Если у вас есть вопросы, не стесняйтесь оставлять комментарии ниже.
Источник
Create Folder in Linux Create Directory in Linux [mkdir Command]
Looking to create folder in Linux/create directory in Linux? Then this post will give you detailed insights on the mkdir command and to execute this process.
List of content you will read in this article:
Everyone who is a beginner or advanced Linux administrator somehow is looking to create folder in Linux/create directory in Linux.
Linux is widely adopted and used due to its stability and flexibility in carrying out various tasks in an easier way. One of the key features of Linux is the terminal where you can run any command to run various tasks from making changes to the system to download any required software.
In this article, we will be highlighting the commands with various options for creating directories or folders in the Linux system. Linux offers an easy command for that- mkdir command that stands for “make directory”. Also, the “mkdir” command will allow you to set permissions, create multiple directories using the single command, and do many other tasks.
Before you run the mkdir command, make sure to complete the prerequisites such as-
- Linux or Unix-like OS.
- Access to the command-line terminal for executing the commands.
- The user should be having the right access to creating the directory.
mkdir command [Make Directory Command]
If you want to create a new directory, you can make use of the “mkdir” command for creating single or multiple directories within the Linux system. You can use this command along with various options for applying various functionality. The syntax can you can use for the “mkdir” command is as follows-
mkdir [option] dir_name
Make directory command options
Option / Syntax
Description
This command will create a directory within the current directory location
This command will help in creating multiple directories in the current directory location. Make sure that you do not use the spaces inside the <>
mkdir –p dir/path/new_dir
This command will allow you to create a directory structure with the missing parent directories (if there is any)
mkdir –m777 dir_name
This command will help in creating a directory and allow you to provide full read, write, execute permissions for every user
mkdir –v dir_name(s)
This command will help in creating a directory in the current location along with the details of the mkdir command.
How to Create Directory in Linux
To run the “mkdir” command, go to the terminal and open it with the admin access if you have, otherwise, you just need to have the right and appropriate access to execute the “mkdir” command.
Always, remember that the options in Linux are case-sensitive so use them correctly else the meaning will change. As per the below example, we have created a directory “Sam”.
mkdir Sam
This command will result in the creation of the directory in the current working directory. If the directory has been created successfully then you will get an empty line on the terminal. If you want to verify the result of the creation of the directory, you can use the “ls” command.
Creating multiple directories
If you want to create several directories in the same directory, you can use the “mkdir” for creating them separately. But it will take time to run individual commands. So to save your time by running separate commands, you can use a single “mkdir” command along with the directory names separated by a comma.
Consider the following example for creating multiple directories at once.
mkdir
There is no need to add space between the directory names in the brackets. But, if you add the space then the name will take an extra character.
Creating a parent directory
If you want to create a structure with multiple subdirectories, then you can use the “mkdir” command along with the “-p: option. Using this option will make sure that the missing parent directory will be added in the process.
Here, we are considering the example where we want to add the “dirtest2” directory within the “dirtest1” directory in the Linux directory, then we have to provide the complete path with the “mkdir” command as shown below.
mkdir –p Linux/dirtest1/dirtest2
Once you run the “mkdir” command with the complete path, then to confirm the creation of the directory, you can run the “ls” command along with the “-R” option. This option will help in showing the recursive directory tree that will display the contents of each directory present in the provided path.
But, if you miss the “-p” option, the terminal will display an error that the directory that you have provided does not exist. You can see the below example.
In the above example, the terminal will show an error that the dirtest3 does not exist rather than creating the parent directory.
Setting permission for directory while creating the directory
If you create any directory in the Linux system, then by default the directory will get the “rwx” permission but only for the user who created that directory. If you want to change the permission for the directory for all the users, then you can use the “-m” option along with the “mkdir” command.
In the below example, we are providing the permission to the directory as “777” that is any user will be able to read, write, or execute that file if required.
mkdir -m
mkdir -m 777 alpha
ls -l
If you want to check the details of the created directory along with their permissions, then you need to get the long listing of the directories. For this, you can run the “ls” command along with the “-l” option.
Verifying the directories
So far, you have noticed that after running the “mkdir” command, you will not get any feedback or the result showing if the creation is successful or not. If you want see the details of the “mkdir” command, then you can use the “-v” option with the “mkdir” command.
Considering the below example with the “-v” option, you will get the details of the command.
Now that you get the complete details of the creation of the directory, you do not have to run the “ls” command to creak the created directory.
How to Create Folder in Linux? [Step By Step Guide]
Follow the below-given steps to create a folder in Linux easily.
Step 1: In Linux, first open the terminal.
Step 2: then enter mkdir dir1 command to build a folder with the name dir1.
Let’s take a closer look at certain cases and other applications. The syntax to create a directory in Linux is as follows:
mkdir folder
mkdir [option] folderName
mkdir directory
By using the ls command to list the contents of the directory, you can confirm that it was created:
This will show the list of all the current directories.
mkdir’s -v (—verbose) option instructs it to print a message for each directory it creates.
mkdir: created directory ‘folder’
The file is generated in the current working directory when only the directory name is provided without the complete path. The latest working directory is the location where the commands are being executed. The cd command is used to modify the actual working directory.
To build a directory in a different region, you’ll need to specify the parent directory’s absolute or relative file direction. To construct a new directory in the /xyz directory, for example, type:
You’ll get a Permission denial error if you want to build a directory in a parent directory where the user doesn’t have enough permissions.
After executing the command you will get output like this:
mkdir: cannot create directory ‘/root/newdirectory’: Permission denied
You can create a parent folder using the following command:
mkdir -p dir11/dir12
mkdir -p parent1/child1
mkdir -p pictures1/memories1
This will list all the directories present in the parent and child folder, respectively to verify it you have to follow the below listed given command.
ls -l
ls -l pictures1
rmdir command/rm command to Remove the Directory/Folder in Linux
Here, we are removing a folder called directory1, so we will execute the below command:
rm -rf directory1
Conclusion
This is all about how to create folder in Linux by using mkdir command. With this guide, you will be able to understand the working of the “mkdir” command. You can use the “mkdir” command along with various options that we have mentioned and explained their usage, how they impact the working of the normal “mkdir” command and how it changes the output. Make sure to use the right option in the right scenario for getting the correct result. The options are case-sensitive, so make sure to use the right option else you will end up with the error
If you feel there is any other option available in Linux to create directories and folders, Please suggest with the comment box, We will try to include your suggestion.
Источник