Unable to create a folder in USB storage using this method:
File dest = new File("storage/usbotg/NewFolder");
dest.mkdirs();
the same method working fine in device storage
File dest = new File(Environment.getExternalStorageDirectory() + "/NewFolder");
dest.mkdirs();
but not in usb storage , any suggestion?
The device is Lenovo TAB2 A10-30.