Path to screenshots in Android

radya picture radya · Mar 12, 2012 · Viewed 28.2k times · Source

Is there a way to find out the path used by android to save screenshots?

Can I get the path from a code?

Answer

zapl picture zapl · Mar 12, 2012

Android's API has no fixed path for screenshots but

File pix = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File screenshots = new File(pix, "Screenshots");

might work. That's what ICS uses as path.