answersLogoWhite

0

How do you change directory to E?

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

First you must have an E: directory formatted. If you do, and you're running Windows XP Professional, click "Start", click "Run", type cmd (this will bring you to a command prompt). At the command prompt type chdir E:\

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you change path in Linux?

You change the current working path directory in Linux by issuing the cd command, followed by the directory you want to change to. For example:cd /dev/inputwould take me to the that directory.


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


What command to change directory?

CD Example: CD <sub-directory> Use CD .. to go up a directory. You can also enter a full path to go straight to that directory. Eg: CD windows/system/etc


What is the command that will change the current default directory to the root directory in Unix?

CD /


How do you change from your home directory in Linux to q2-jan14 directory?

cd /q2-jan14


What happen if a directory permission charged?

It all depends on what you change the permissions to. The directory may become inaccessible, not writeable, or readable, depending on the change.


How do you change the current directory in PHP?

chdir() PHP function helps in changing the current directory.


What command line is used to change the current directory?

cd dirReplace "dir" with the name of your directory.


Which command would you use to change to the usr directory using an absolute pathname?

To change to the /usr directory using an absolute pathname, you would use the command cd /usr. This command specifies the full path to the usr directory from the root of the filesystem. Ensure you have the necessary permissions to access that directory.


What does CD stand for in command prompt?

Change Directory..


Can you connect Active Directory to other 3rd party Directory?

Yes, you can use dirXML or LDAP to connect to other directories (ie. E-directory from Novell). Novell eDirectory, formerly called Novell Directory Services (NDS)


What does CD means in Linux os?

If by "CD" you mean the linux terminal command "cd", it stands for "change directory". It allows you to move from one directory to another. It's basically the same as Window's cd command.cd / will take you to the very first directory, which is the root directory. (Do not confuse this with /root directory)cd .. will take you one directory upcd ~ will take you to your (currently logged in user's) home directory, which is, (/home/)cd - will take you back to where you were before you change directories.