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.

Eric Goncalves
5,188 PointsNexus 5 not creating directory
When I run the code at the end of the video, I get the error "Failed to create directory."
// Get the URI
// 1. Get external storage directory
String appName = MainActivity.this.getString(R.string.app_name);
File mediaStorageDir = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES),
appName);
// 2. Create our subdirectory
if (! mediaStorageDir.exists()) {
if (! mediaStorageDir.mkdirs()) {
Log.e(TAG, "Failed to create directory.");
return null;
}
}
2 Answers

Eric Goncalves
5,188 PointsI'm sorry, I had copied something differently and changed it. It works fine now.
Thanks

Ben Jakuben
Treehouse TeacherThe code in the video works on my Nexus 5, but I'll take a look at what you've posted and see if I can troubleshoot anything.
Ben Jakuben
Treehouse TeacherBen Jakuben
Treehouse TeacherExcellent - glad it's working!