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:\
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.
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".
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
CD /
cd /q2-jan14
It all depends on what you change the permissions to. The directory may become inaccessible, not writeable, or readable, depending on the change.
chdir() PHP function helps in changing the current directory.
cd dirReplace "dir" with the name of your directory.
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.
Change 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)
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.