|
CHDIR (CD) Change Directory Command |
|
|
|
|
Saturday, 03 May 2008 |
|
Once you have located the directory you want, you may move from directory to directory using the CD command (change directory) Example: - C> cd furniture
- Moves you to the directory called 'FURNITURE'
- C> cd \furniture\chairs
- Moves you to the directory called 'CHAIRS' under the directory called 'FURNITURE'.
- C> cd ..
- Moves you up one level in the path.
- C> cd \
- Takes you back to the root directory (c: in this case).
|