Unable to create a folder or file in USB storage android version above 5.0+ non-root device using this method
File dest = new File("storage/usbotg/usbname/foldername"); dest.mkdir();
I will successfully created a file or folder in internal storage using ndk c by below code .
FILE* fp = fopen("/sdcard/sample.txt","w+");
but unable to create usb storage via appliaction .
FILE* fp = fopen("/storage/2F5A-E677/sample.txt","w+");