I use this code line to create folder in storage of phone:
File folder = new File(Environment.getExternalStorageDirectory() +
File.separator + "Books");
boolean success = true;
if (!folder.exists()) {
success = folder.mkdir();
}
how i get path of that folder to add books in that folder programatically.i use this line to get folder path but it just give path till storage...
destination = Environment.getExternalStorageDirectory()+File.separator+"Books";
i want the path of books folder exactly...