Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android編程獲取SD卡路徑及剩余容量的方法

Android編程獲取SD卡路徑及剩余容量的方法

編輯:關於Android編程

本文實例講述了Android編程獲取SD卡路徑及剩余容量的方法。分享給大家供大家參考,具體如下:

public static String getExternalStoragePath() {
 // 獲取SdCard狀態
 String state = android.os.Environment.getExternalStorageState();
 // 判斷SdCard是否存在並且是可用的
 if (android.os.Environment.MEDIA_MOUNTED.equals(state)) {
 if (android.os.Environment.getExternalStorageDirectory().canWrite()) {
   return android.os.Environment.getExternalStorageDirectory().getPath();
 }
 }
 return null;
}
public static long getAvailableStore(String filePath) {
 // 取得sdcard文件路徑
 StatFs statFs = new StatFs(filePath);
 // 獲取block的SIZE
 long blocSize = statFs.getBlockSize();
 // 獲取BLOCK數量
 // long totalBlocks = statFs.getBlockCount();
 // 可使用的Block的數量
 long availaBlock = statFs.getAvailableBlocks();
 // long total = totalBlocks * blocSize;
 long availableSpare = availaBlock * blocSize;
 return availableSpare;
}

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android編程開發之SD卡操作方法匯總》、《Android開發入門與進階教程》、《Android資源操作技巧匯總》、《Android視圖View技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved