诺虫的箱子

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  97 随笔 :: 4 文章 :: 4 评论 :: 55590 阅读
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

获取sd卡空间大小

复制代码
       TextView tv_total_size = (TextView)findViewById(R.id.textView1);
        TextView tv_useable_size = (TextView)findViewById(R.id.textView2);
        
        File file =Environment.getExternalStorageDirectory();
        long totalSpace = file.getTotalSpace();
        long usableSpace = file.getUsableSpace();
        
        String formatToatalSpace = Formatter.formatFileSize(this, totalSpace);
        String formatUsableSpace =Formatter.formatFileSize(this, usableSpace);
        
        tv_total_size.setText("总大小:"+formatToatalSpace);
        tv_useable_size.setText("可用空间:"+formatUsableSpace);
复制代码

获取sd 卡目录

String sdPath =Environment.getExternalStorageDirectory().getPath();

 

posted on   诺虫的箱子  阅读(228)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示