Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Hakim Rachidi
38,489 PointsThis challenge is confusing.
I want to delete a directory
os.___("/grades/students.json")
Kenneth Love This will raise a NotADirectoryError when os.rmdir is used. Supposed to be "/grades".
1 Answer

Steven Parker
221,976 PointsSince the question doesn't specify otherwise, we have to assume that "students.json" is an empty directory inside the "grades" directory, and is the one intended for deletion.
In that case the function should succeed.