C cambol Active Member Licensed User Jul 4, 2016 #1 I do File.MakeDir(File.DirDocuments, "backup") and File.Copy(File.DirAssets,"test.txt",File.DirDocuments & "/backup","test.txt") and this app install in iphone ~ after remove this app from iphone , this file File.DirDocuments & "/backup","test.txt" also been remove . Is there any way to keep this File.DirDocuments & "/backup","test.txt" in iphone after app have been remove .
I do File.MakeDir(File.DirDocuments, "backup") and File.Copy(File.DirAssets,"test.txt",File.DirDocuments & "/backup","test.txt") and this app install in iphone ~ after remove this app from iphone , this file File.DirDocuments & "/backup","test.txt" also been remove . Is there any way to keep this File.DirDocuments & "/backup","test.txt" in iphone after app have been remove .
Erel B4X founder Staff member Licensed User Longtime User Jul 4, 2016 #2 No. All the app files are deleted. You can store values in the keychain. This is the only local place that persists after the app is uninstalled. Upvote 0
No. All the app files are deleted. You can store values in the keychain. This is the only local place that persists after the app is uninstalled.
C cambol Active Member Licensed User Jul 4, 2016 #3 Can you teach how to use keychain . I have no idea about keychain . Upvote 0
tufanv Expert Licensed User Longtime User Jul 4, 2016 #4 1)add iphone to selected libraries 2) dim p as phone 3) p.keychainput("key","Value") ' This will add a value to keychain and even the app is removed you can retrieve 4) to retrieve use : p.keychainget("key") Thats all cambol said: Can you teach how to use keychain . I have no idea about keychain . Click to expand... Upvote 0
1)add iphone to selected libraries 2) dim p as phone 3) p.keychainput("key","Value") ' This will add a value to keychain and even the app is removed you can retrieve 4) to retrieve use : p.keychainget("key") Thats all cambol said: Can you teach how to use keychain . I have no idea about keychain . Click to expand...
Erel B4X founder Staff member Licensed User Longtime User Jul 4, 2016 #7 There are no documented limits. Upvote 0