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.
我面临一些存储问题。我正在开发一个应用程序,我必须在该应用程序中访问手机的板载外部存储和我使用此代码获得的外部 sdCard 存储
Environment.getExternalStorageDirectory();
但是当板载外部内存存在时,此代码返回板载内存的路径而不是外部 sdCard,而 sdCard 已安装
现在的问题是..我想访问板载内存和外部 sdcard 有什么方法可以访问这两个内存
试试这个:
String m_str = Environment.getExternalStorageDirectory() .getAbsolutePath().toString(); //return path sdcard/mnt