answersLogoWhite

0

The command is CD (Change Directory).* You use it like this:

cd C:\Whatever\WhateverElse

Unlike many other commands, you don't have to put quotes around the directory path:

cd C:\Whatever\Whatever Else

is identical to

cd "C:\Whatever\Whatever Else

Also, you don't have to use the full path. If you don't specify the full path, the command works relative to the current directory. Here's an example:

If you're in C:\Users\John, then you can use either of these commands to

get to the desktop:

cd C:\Users\John\Desktop

cd Desktop

Finally, CD is not case sensitive, so

cd Desktop

is the same as

cd desktop

*You can also use CHDIR; they're identical.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you Locate the Linux root partition?

The root directory is indicated by a "/'. You can navigate to the root directory using the command 'cd /'.


What is the DOS command to navigate to a directory?

CD which stands for Change Directory.Entering CD /? will display a list of supported options.


How do you compile your java code?

save it into a .java file. then open command prompt and navigate to your java bin directory. then type CD then your java bin directory. then type this . javac ProgName.java


cd?

The command "cd" stands for "change directory" and is used in command-line interfaces to navigate between different folders in a file system. By typing "cd" followed by a directory path, users can move into that directory. For example, "cd Documents" would take the user to the Documents folder if it exists within the current directory. Using "cd .." moves the user up one level in the directory hierarchy.


What command verifies your source directory works?

Not sure what you mean by 'directory works' but a common command is 'ls' to see what is in the directory.


What command creates a sub directory under a directory?

Mkdir command creates a subdirectory under a directory (MD creates a directory) . The command Chdir changes the current Default directory(CD changes the current directory). The Rmdir removes the subdirectory(RD removes a directory).


Which MS-DOS command is used to delete a directory and its sub directories in one pass?

To delete directory and sub directory in single command, use "deltree" command..


What is the command to view the contents of a directory?

Go to the directory by "CD" command say "CD MyDoc" and press enter.. Now run "dir" command to see the contents of the directory..


What is the Linux command used to list the contents of a directory?

ls will list the contents of a directory.


What is the Linux command for displaying a working directory?

The command pwd displays your current/present working directory.


Which command would a user type on the command line to find out what directory in the directory tree he is currently in?

PWD


What does the command CD do?

CD stands for "change directory". For instance, if you are in the directory of c:\files\ and you want to navigate to a folder within the "files" directory called "documents", you can type "cd documents" to change the directory you are in. Once you've done that you will be at c:\files\documents\. Inversely you can use "cd.." to go back to the parent directory "files".