i got the path to the path using this:
Application.DataPath
Application.persistentDataPath
but the problem is that i cant find this folder with file manager on android device. its like it does not exist? i am using honeycomb
i got the path to the path using this:
Application.DataPath
Application.persistentDataPath
but the problem is that i cant find this folder with file manager on android device. its like it does not exist? i am using honeycomb
Application.dataPath points the the .apk file on the device (i.e. /data/app/com.company.app-1.apk or /mnt/asec/com.company.app-1/pkg.apk)
Application.persistentDataPath points to folder for application specific files (i.e. /data/data/com.company.app/files/)
I believe both of these are off-limits on a regular, non-rooted, device (hence ‘invisible’ to any file manager etc).