Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write an android application to read/write files from connected USB drive (FAT file system).I am able to use android usb host api's to identify endpoints and make a bulk transfer and it worked.
Then tried to use FAT32-lib library on top of usb host api's to abstract bytes & sectors with files & directories.

But I am stuck here:

android api: UsbDeviceConnection class bulkTransfer method doesn't offer offset parameter. it always starts from first byte. so, I am not able to read bytes on a particular index.I checked libusb bulk tranfer api's and they don't provide offset options either.

So, my understanding is I can't use android usb api's or libusb to read bytes to convert into files/directories.

My goal is to read/write files from connected USB drive on an android tablet.

Please give some direction.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.