Hi , In android it is not directly possible to share files and folders across different application. The only way is Content Providers.
1. Is there any general (any file type) content store? Today there is Audio, Video and Image Store. 2. Wanted to write new Content Provider to store Big files, like Video and Audio. Saw some examples, like ( http://developer.android.com/guide/topics/providers/content-providers.html ) Uri uri = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, values); OutputStream outStream = getContentResolver().openOutputStream(uri); sourceBitmap.compress(Bitmap.CompressFormat.JPEG, 50, outStream); outStream.close(); But what functions in Content Provider get called when we do "getContentResolver().openOutputStream(uri)" ? Which all function need to overload/implement in cont provider . .? 3. Is there any example for content provider which stores big files like video, audio ? I want through MediaStore.Image / Video etc , but could not makeout much. regards Purush -- 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

