After searching 1 hour i do not found any solution to my problem.

I want to move a file from sdcard to assets folder and also overwrite the existing file in assets folder (both file are sqlite database have same name with just a little difference in data )

??

link|improve this question

6  
You simply can't remove or add anything from/to assets folder at runtime. – Mudassir Dec 6 '11 at 11:58
i want to download sqlite database from server and then copy to assets folder . – john smith Dec 6 '11 at 12:04
how can i overcome from this situation? – john smith Dec 6 '11 at 12:05
1  
Why are you downloading the database, just fetch the results and use them. – Mudassir Dec 6 '11 at 12:06
2  
Thats what I said in my last comment. Fetch the latest information from database on Web server and show it. – Mudassir Dec 6 '11 at 12:18
show 2 more comments
feedback

3 Answers

up vote 5 down vote accepted

Actually, The behaviour of the android .apk file is read only so the directory structure which are in that apk file follows the same, So no one can write this files or make changes on that at runtime,that's why You can't make a changes in /asset folder at runtime. you can read file from it (means copy files which are available in asset to any internal storage or /sdcard but not write it to vice-versa)

Its apply on all the directories which are build in .apk files. As per docs.

link|improve this answer
sorry same comment but i need solution :) I have database in assets folder and also on server now i want to change the database later on server so that user can get latest update.how can i do this? How will user get that database? – john smith 7 secs ago – john smith Dec 6 '11 at 12:12
You have to write that database to either internal storage or in sdcard, (Internal storage is preferable).. – user370305 Dec 6 '11 at 12:13
can you guide me how to do this? – john smith Dec 6 '11 at 12:15
if i write database in sdcard or in internal memory how to copy that database in my app database? – john smith Dec 6 '11 at 12:17
1  
Ok, just simple put your created database in asset directory, then when your application first time installed copy that database file in internal storage /data/data/packagename/databases/ and then open that database file to your application stuff, now when you get update from web server just update data to database file which are place on internal storage of above path.. – user370305 Dec 6 '11 at 12:18
show 2 more comments
feedback

Assets folder are not Writable it is only readable so you cant copy from sdcard to assets, yes you can copy from assets to sdcard

link|improve this answer
1  
No downvote. But the poster wants vice versa. – Mudassir Dec 6 '11 at 12:01
i know that stackoverflow.com/questions/4447477/… but my problem is different. – john smith Dec 6 '11 at 12:01
1  
+1 for the exact info. – Paresh Mayani Dec 6 '11 at 12:04
+1 for information that assets folder is not writable i will keep that in my mind :P – john smith Dec 6 '11 at 12:25
feedback

If you want other apps not to access your database then what you can do is

  1. Download the database from website. create a temp database also in app directory.
  2. getDatabasePath() this will give you the path of the dummy database you have created now replace this with the one you downloaded.

PS.: User and apps having root access still able to access it and you cant do anything in that scenario

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.