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 trialEric 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!