How to select folder in android?
Hi there is a way to select folder where user want to save file in android . I check out http://code.google.com/p/android-file-dialog/ it has functionality to select file but i want to select folder , please provide me usable link or examples. I used the same source in my app (pretty sure), and there is a block of code: protected void onListItemClick(ListView l, View v, int position, long id) { if (file.isDirectory()) { selectButton.setEnabled(false); if (file.canRead()) { lastPositions.put(currentPath, position); getDir(path.get(position)); } else { new AlertDialog.Builder(this) .setIcon(R