码迷,mamicode.com
首页 > 其他好文 > 详细

获取sd卡空间大小和获取sd卡目录

时间:2019-03-04 18:49:48      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:extern   bsp   ace   code   set   path   text   ora   rect   

获取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();

 

获取sd卡空间大小和获取sd卡目录

标签:extern   bsp   ace   code   set   path   text   ora   rect   

原文地址:https://www.cnblogs.com/NuoChong/p/10472192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!