How To Create A Folder In C Drive
Начиная осваивать командную строку, создавая . bat или . cmd файлы все интересуются достаточно простыми вопросами через некоторое время, составляют большие сценарии в скриптах.
Сегодня мы рассмотрим простой пример создания папки в командной строке.
Для создания папки в командной строке:
Зайдите в командную строку, нажав для этого сочетание клавиш Win+ R – в окне Выполнить напечатайте cmd и нажмите Enter
Окно командной строки.
Кстати ! Открыв окно командной строки, вы увидите путь C:\ Users\Имя вашего пользователя
Для перемещения по папкам необходимо воспользоваться командой CD .
Если необходимо перейти в корень диска наберите следующую команду:
CD \
Окно с примером как это выглядит в командной строке ниже:
В данном примере рассмотрен переход из папки C:\Program Files в корень диска C:
Данная команда позволяет выйти из любой папки или папок в корень диска.
Рассмотрим обратный пример перемещения в интересующую нас папку.
Для этого, необходимо напечатать:
CD Имя папки
Пример ниже:
В данном примере мы перемещаемся из корня диска C: в папку С:\ Program Files
При перемещении в папку, печатая первые буквы названия этой папки, вы можете воспользоваться кнопкой TAB и если папка существует, то система предложит вариант.
Вот так бывает... В статье - "Как создать папку через командную строку ?" мы еще освоили навигацию по папкам в cmd.
Думаю, что будет полезно.
Для навигации по дискам в командной строке необходимо набрать букву диска и поставить после нее двоеточие и нажать кнопку Enter. Пример перехода на диск D: показан ниже:
Теперь рассмотрим пример создания папки.
Для создания папки используется команда mkdir
Переместившись в нужный Вам каталог напечатайте:
Mkdir Имя вашей папки
Ниже пример:
На изображении – создание папки Test на диске C:
Можно создать папку и вложенные в нее папки:
Mkdir "Имя вашей папки\Имя вложенной папки"
На изображении указан пример создания папки 1 на диске C: с двумя вложенными папками 2 и 3
Результат будет выглядеть как на изображении ниже
Также, присутствует возможность создания папки из любой в которой вы находитесь папки без перемещения и навигации по папкам.
Пример :
Находясь в папке c:\1\2\3 мы создаем папку на диске C: с именем New Test
Кавычки при создании папок с пробелом обязательны. Если кавычки отсутствуют, то создается папка с первым словом до пробела, в нашем случае New. Попробуйте поэкспериментировать.
Справка по команде mkdir можно получить по ключу /?
mkdir /?
Starting to master the command line or creation .bat,.cmd files are all interested in fairly simple questions moving from the basics and after a while composing large scripts.
Today, we will look at a simple example of creating a folder on the command line.
To create a folder on the command line:
Go to the command prompt by pressing Win+R in the Run window type cmd and press Enter
Command prompt window.
Attention! When you open a command prompt window, you will see the path C:\Users\You user login
To move through the folders, use the CD command.
If you want to go to the root of the disk, type the following command:
CD \
A window with an example of how it looks in the command line below:
In this example the transition from the folder C:\Program Files in the root of drive C:
This command allows you to exit any folder or folders in the root of the disk.
To move to the folder you need to type:
CD folder Name
The example below:
In this example, we move from the root of the C: drive to the folder C:\Program Files
When moving to a folder, typing the first letters of the folder name, you can use the TAB button and if the folder exists, the system will offer the option.
Just like this. In the article how to create a folder via the command line, we have mastered folder navigation in cmd.
I think it will be useful.
To navigate through the disks in the command line, type the letter of the disk and put a colon after it and press Enter. An example of this transition on the D: drive are shown below:
Now! Let's look at an example of creating a folder.
To create a folder, use the mkdir command
After moving to the desired directory, type:
mkdir name of your folder
Below is an example:
In this image we are create a Test folder on drive C:
You can create a folder and its subfolders:
mkdir "your folder Name\subfolder Name"
This image shows an example of creating folder 1 on disk C: with two subfolders 2 and 3
The result will look like the image below:
There is also the ability to create a folder from any folder in which you are without moving and navigating through the folders.
Example:
Located in the folder С :\1\2\3 we create a folder on the C: drive named New Test
Quotes are required when creating folders with spaces. If there are no quotes, a folder with the first word before the space is created, in our case, New. Try to experiment.
Help for the mkdir command can be obtained with the /? key.
mkdir /?
How To Create A Folder In C Drive
Source: http://regedit.su/command-prompt/85-command-prompt/843-create-folder-cmd
Posted by: fordthisis1996.blogspot.com
0 Response to "How To Create A Folder In C Drive"
Post a Comment