Unable to write files on sdcard android

前端 未结 3 1505
时光说笑
时光说笑 2020-12-17 02:04

I have an app which saves backup files on SD-Card. It works fine on HTC Nexus One, and other android phones, but with some phones it doesn\'t work (reading or writing).

3条回答
  •  时光说笑
    2020-12-17 02:58

    I have Sony Xperia tipo dual and this:

    FILE* pFile = fopen("/mnt/sdcard/mydata.dat","w+");

    and this:

    FILE* pFile = fopen("/sdcard/mydata.dat","w+");

    Both work ok. (I did it in Native)

提交回复
热议问题