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 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.


In Linux what are three commands you can use to create a subdirectory?

1. The most straightforward way to create a create a subdirectory in the current directory is mkdir name where name is the name of the new directory. 2. Another way is to move a directory and its descendants from somewhere else: mv path name where path is an absolute or relative pathname for an existing directory hierarchy, and name is the directory name it will be given in the current directory. 3. Various utilities for unpacking archives may create directories as they execute; for example cpio, tar, unzip etc.