Android ver 4.3, API 18, Nexus 4
I am trying to save some recorded video files in a specified location. I am using:
File mediaStorage = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM), "DirName");
This works fine, but when I try to use the DIRECTORY_PICTURES location instead, as the android developer docs recommend (http://developer.android.com/guide/topics/media/camera.html#saving-media), it doesn't exist.
Anyone know why?