Working in the shell requires you to understand how the files on your computer are organised.
The following illustrates how we can move and work with files and folders in the shell.
# move into the /c/Users/andrew/Documents/ foldercd /c/Users/andrew/Documents # Now we are in the Documents folder...# move into the /c/Users/andrew/Documents/Code foldercd Code ## Move back to /c/Users/andrew - the parent of the parent foldercd ../..