In android application I need to do:
If(removable SdCard is present){ String path=get the path of removable Sdcard() ; //using this path we will create s
To get internal SD card
String internalStorage = System.getenv("EXTERNAL_STORAGE"); File f_exts = new File(internalStorage );
To get external SD card
String externalStorage = System.getenv("SECONDARY_STORAGE"); File f_secs = new File(externalStorage );