terminal go to directory code example
Example 1: command prompt cd back
cd ..\ -> To go back one level
cd ..\..\ -> To go back two levels
Example 2: change directory cmd
cd
comment to change directory in the cmd
Example 3: terminal change directory
// change directory in terminal
cd folder_name/subfolder_name
// go up one directory level
cd ..
// back to previous directory
cd -
// return to home directory
cd