Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTimothy Bass
888 Pointschanging directories in console
The workspace allows us to create sub directories and move files into them. I'm on the second course of the python track and can't seem to cd down the dir I created in the console and started new file in. How is that done?
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsIn the console, ls
will list the directory contents and cd
will change directories. The directory you created my not be a direct descendent of the current directory. Use ls
to see what is in the local dir.
Other commands:
- "
$ cd ..
" moves to parent dir - "
$ cd /
" moves to topmost dir - "
$ cd ../..
" moves up two parent levels