>No phones can do this --- it's a filesystem limitation; FAT simply can't >cope with more than one concurrent user. Only really specialised >filesystems can do that, and most of them require additional hardware to >synchronise the different users. > >If you want to allow the PC and the phone to access the device >concurrently, you'll need to use a file system server on the phone and >proxy requests from the PC. JCIFS looks helpful here.
it's not so much a filesystem limitation as a concurrency problem between the two environments. both of them assume they have exclusive access, and then go on to build caching etc on top of this assumption. chaos ensues :-) you can use adb push and pull to copy stuff between the device and the host machine. hth --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

