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 trial

Ruby Ruby on Rails 5 Basics Handling Requests The Controller

Khaokong Nopwattanapong
Khaokong Nopwattanapong
3,578 Points

How do I get to blog directory.

I am using windows, and I can't find "Blog" folder nor file.

1 Answer

Jay McGavren
STAFF
Jay McGavren
Treehouse Teacher

The blog directory is created when you run the command rails new blog. You should review this video for more details. You might also want to review our Console Foundations course for more info about directories and working in the console/terminal.

By the way, the directory should be named blog, not Blog. Many things in Ruby and Rails are case-sensitive, meaning that letters we show in lower-case must be in lower-case on your system, and letters we show in upper-case must be in upper-case on your system. You will save yourself a lot of confusing errors later if you learn to avoid mixing letter case.