Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们为 Archos 7 家用平板电脑开发了一款 Android 应用程序。在爱可视 7 中,有一个 sdcard 文件夹可用。在代码中,我可以使用以下方法获取 sdcard 位置:
Environment.getExternalStorageDirectory()
但是对于爱可视 10i 互联网平板电脑,没有可用的 sdcard 文件夹。爱可视 10i 平板电脑中是否有 sdcard 的相关文件夹?
有人可以帮忙吗?提前致谢。
爱可视 10.1 有一个 /mnt/storage 文件夹,它与 /mnt/storage 和 /mnt/sdcard 符号链接。'真正的' sdcard 挂载为 /mnt/storage/sdcard。因此,从应用程序的角度来看,它应该表现正常。