To get the file I use:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("*/*"); intent.addCategory(Intent.CATEGORY_OPENABLE); 

But the question was how to get the folder / directory ..

API level 19.

Are there ways to do this without third-party libraries?

    0