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

Android Build a Self-Destructing Message Android App Capturing Photos and Videos Setting Where Photos are Saved

Nexus 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

I'm sorry, I had copied something differently and changed it. It works fine now.

Thanks

Ben Jakuben
Ben Jakuben
Treehouse Teacher

Excellent - glad it's working!

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

The 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.