answersLogoWhite

0

You can create a new directory by using "MD" or "MKDIR" commands.. Use as follows:

C:\> MD <directoryname> and press enter.. or

C:\> mkdir <directoryname>

For example: MD documents or mkdir documents..

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

DOS command to create and move to the newly created directory?

You can use "xcopy" command. mkdir - to create a directory. move - to move one or more files in a new location.


In DOS what does the command MD do?

Creates a new directory or folder.


How do you create a new directory in vista?

Right click, new-&gt;directory.


What is syntax in dos commands?

The most simple DOS command has to be RUN. A way to view files in a particular directory is DIR. To change to a new directory is CD /C. This means if your hard drive is letter C then it will become available as the new directory with CD(change directory). FORMAT C is an example of how to wipe out your hard drive completely to when it was brand new.


What is the name of a DOS command that creates a directory called MYDIRECTORY?

The DOS commands for creating new directories is either MKDIR or MD.


Select one task the CSAs cannot accomplish using active directory?

Create a new records structure


What is the command to create a new directory called LABS directly under the current directory you are in if i was i the c directory?

mkdir LABS


What command did you use to create directory?

mkdir this is the new directory command. or in kde/gnome right click in a folder and choose new folder.


HOW TO CREATE NEW USERS IN LINUX USING BASH?

To create new users in Linux using Bash, you can use the useradd command followed by the username. For example, sudo useradd newusername will create a user named &quot;newusername.&quot; To set a password for the new user, use the command sudo passwd newusername and follow the prompts. Additionally, you can specify options like user home directory or shell by using flags such as -m for creating a home directory or -s for setting the default shell.


How to create a new directory called letters directly under the current directory?

The 'mkdir' program is used. $ mkdir letters


What is dcpromo?

dcpromo is command u have to write it in Run to create a new domain controller and create active directory


Is it possible to rename a folder not a file it can be renamed in a directory structure using java?

Yes, it is possible to rename a folder in a directory structure using Java. You can use the renameTo() method from the File class, which allows you to change the name of a directory. Simply create a File object for the existing folder and another for the new folder name, then call renameTo(newFile). Note that the operation will succeed only if the destination does not already exist and the parent directory is writable.