Reputation: 925
I've searched through the internet for how to move or copy'n'paste files on an Android device programmatically, but i found nothing up to now. what i wish to do is, that my application copies or moves a SQLite Database from the internal sdcard to the app folder in /data/data/example. i would be pleased if someone could explain my how to do that or give me a link to somewhere it gets explained.
Upvotes: 1
Views: 4038
Reputation: 11813
A quick search on Stackoverflow turns out two questions with helpful answers:
How to make a copy of a file in android?
Basically, they suggest to read the contents of one file and write those to another file. You can do the same with monodroid.
Upvotes: 1