真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android獲取內(nèi)置sdcard跟外置sdcard路徑

Android獲取內(nèi)置sdcard跟外置sdcard路徑

成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供平定網(wǎng)站建設、平定做網(wǎng)站、平定網(wǎng)站設計、平定網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、平定企業(yè)網(wǎng)站模板建站服務,10余年平定做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。

Android獲取內(nèi)置sdcard跟外置sdcard路徑.(測試過兩個手機,親測可用)

1.先得到外置sdcard路徑,這個接口是系統(tǒng)提供的標準接口.
2.得到上一級文件夾目錄
3.得到該目錄的所有文件夾,根據(jù)判斷得到內(nèi)置sdcard跟外置sdcard。
4.程序運行的時候記得給程序添加讀取sdcard的權限哦.

/** 
 * 得到sdcard的路徑 
 * @return 返回一個字符串數(shù)組  下標0:內(nèi)置sdcard  下標1:外置sdcard 
 */ 
public static String[] getSDCardPath(){ 
  String[] sdCardPath=new String[2]; 
  File sdFile=Environment.getExternalStorageDirectory(); 
  File[] files=sdFile.getParentFile().listFiles(); 
  for(File file:files){ 
    if(file.getAbsolutePath().equals(sdFile.getAbsolutePath())){//外置 
      sdCardPath[1]=sdFile.getAbsolutePath(); 
    }else if(file.getAbsolutePath().contains("sdcard")){//得到內(nèi)置sdcard 
      sdCardPath[0]=file.getAbsolutePath(); 
    } 
  } 
  return sdCardPath; 
} 

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


當前標題:Android獲取內(nèi)置sdcard跟外置sdcard路徑
文章網(wǎng)址:http://weahome.cn/article/pdoopo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部