获取内置/外置sd卡路径

2024-09-01 22:32
文章标签 路径 内置 sd 获取 外置

本文主要是介绍获取内置/外置sd卡路径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

获取内置/外置sd卡路径
Software #112152

获取内外置T卡位置:StorageManager.java类
http://192.168.3.77:8989/wcp/webdoc/view/Pub402880cd5c5da6e7015dab1bb5b40ed2.html 达哥的WCP+廖文星的bug 112152
可参考http://blog.csdn.net/rgen_xiao/article/details/55506025
没有外置T卡
01-04 20:19:12.956 3408-3408/com.example.sharedpreferencestest D/ContentValues: 
onCreate: getStoragePath(this,true)==null 

内置T卡位置
01-04 20:19:12.959 3408-3408/com.example.sharedpreferencestest D/ContentValues: 
onCreate: getStoragePath(this,false)==/storage/emulated/0 

有外置T卡
01-04 20:21:05.160 4018-4018/com.example.sharedpreferencestest D/ContentValues: 
onCreate: getStoragePath(this,true)==/storage/B403-1BF6 

内置T卡位置
01-04 20:21:05.164 4018-4018/com.example.sharedpreferencestest D/ContentValues: 
onCreate: getStoragePath(this,false)==/storage/emulated/0

scard0:指系统内部存储
scard1:指外插的sd卡

方法一:
    //is_removable false获取内置sd路径  true获取外置sd路径  
    private String getStoragePath(Context mContext,boolean is_removable){
        StorageManager mStorageManager = (StorageManager)mContext.getSystemService(Context.STORAGE_SERVICE);
        Class<?> storageVolumeClazz = null;
        try {
            storageVolumeClazz = Class.forName("android.os.storage.StorageVolume");//获取StorageVolume类
            Method getVolumeList = mStorageManager.getClass().getMethod("getVolumeList");//通过反射获取StorageManager中方法
            Method getPath = storageVolumeClazz.getMethod("getPath");//通过反射获取StorageVolume中方法
            Method isRemovable = storageVolumeClazz.getMethod("isRemovable");//通过反射获取StorageVolume中方法
            Object result = getVolumeList.invoke(mStorageManager);//通过Method的invoke方法获取当前存在的可以获取到的存储列表
            final int length = Array.getLength(result);//存储列表的数目
            //String pathappend="";
            //下面的for循环会得到当前所有的存储路径:包括内置、外置、otg,但是我们平时的otg不常用,在客户有需求时候,可以稍作修改
            for(int i=0;i<length;i++){
                Object storageVolumeElement = Array.get(result,i);//获取存储元素
                String path = (String)getPath.invoke(storageVolumeElement);//通过存储元素获取对应路径
                boolean removable = (Boolean)isRemovable.invoke(storageVolumeElement);//通过存储元素获取是否支持可拆卸
                if(is_removable == removable){
                    return path;
                }
                //pathappend=pathappend+",,,"+path;
            }
            return null;
            //对N平台的获取到的元素顺序是:内置,,,外置,,,otg:,,,/storage/emulated/0,,,/storage/70FF-15E5,,,/storage/7AB3-AE0B
            //return pathappend;
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (InvocationTargetException e) {
            e.printStackTrace();
        } catch (NoSuchMethodException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }

        return null;
    }
    
方法一缩略写法:
    public void getPrimaryStoragePath() {
        try {
            StorageManager sm = (StorageManager) getSystemService(Context.STORAGE_SERVICE);
            Method getVolumePathsMethod = StorageManager.class.getMethod("getVolumePaths", null);
            String[] paths = (String[]) getVolumePathsMethod.invoke(sm, null);
            // first element in paths[] is primary storage path
            Log.d(TAG, "getPrimaryStoragePath: getStoragePath(this,true)=="+paths[0]);//内置sd路径
            Log.d(TAG, "getPrimaryStoragePath: getStoragePath(this,true)=="+paths[1]);//外置sd路径
        } catch (Exception e) {
            Log.e(TAG, "getPrimaryStoragePath() failed", e);
        }
    }
    
廖文星:(此方法可在源码里写,在apk里写sm.getVolumePaths()出错!)
    public void getPrimaryStoragePath() {
        //Redmine#112152 liaowenxing modified for changing record path 2017.12.27,begin
        StorageManager sm = (StorageManager) mContext.getSystemService(Context.STORAGE_SERVICE);
        String[] paths = sm.getVolumePaths();
        if (paths.length > 1)
            sampleDir = new File(paths[1]);
        sampleDir = new File(sampleDir.getAbsolutePath() + "/Recorder/Call Recorder");
        //Redmine#112152 liaowenxing modified for changing record path 2017.12.27,end
    }

这篇关于获取内置/外置sd卡路径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1128222

相关文章

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单

通过C#获取PDF中指定文本或所有文本的字体信息

《通过C#获取PDF中指定文本或所有文本的字体信息》在设计和出版行业中,字体的选择和使用对最终作品的质量有着重要影响,然而,有时我们可能会遇到包含未知字体的PDF文件,这使得我们无法准确地复制或修改文... 目录引言C# 获取PDF中指定文本的字体信息C# 获取PDF文档中用到的所有字体信息引言在设计和出

python中os.stat().st_size、os.path.getsize()获取文件大小

《python中os.stat().st_size、os.path.getsize()获取文件大小》本文介绍了使用os.stat()和os.path.getsize()函数获取文件大小,文中通过示例代... 目录一、os.stat().st_size二、os.path.getsize()三、函数封装一、os

python获取当前文件和目录路径的方法详解

《python获取当前文件和目录路径的方法详解》:本文主要介绍Python中获取当前文件路径和目录的方法,包括使用__file__关键字、os.path.abspath、os.path.realp... 目录1、获取当前文件路径2、获取当前文件所在目录3、os.path.abspath和os.path.re

Java子线程无法获取Attributes的解决方法(最新推荐)

《Java子线程无法获取Attributes的解决方法(最新推荐)》在Java多线程编程中,子线程无法直接获取主线程设置的Attributes是一个常见问题,本文探讨了这一问题的原因,并提供了两种解决... 目录一、问题原因二、解决方案1. 直接传递数据2. 使用ThreadLocal(适用于线程独立数据)

hdu2544(单源最短路径)

模板题: //题意:求1到n的最短路径,模板题#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#i

poj 1734 (floyd求最小环并打印路径)

题意: 求图中的一个最小环,并打印路径。 解析: ans 保存最小环长度。 一直wa,最后终于找到原因,inf开太大爆掉了。。。 虽然0x3f3f3f3f用memset好用,但是还是有局限性。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#incl

【408DS算法题】039进阶-判断图中路径是否存在

Index 题目分析实现总结 题目 对于给定的图G,设计函数实现判断G中是否含有从start结点到stop结点的路径。 分析实现 对于图的路径的存在性判断,有两种做法:(本文的实现均基于邻接矩阵存储方式的图) 1.图的BFS BFS的思路相对比较直观——从起始结点出发进行层次遍历,遍历过程中遇到结点i就表示存在路径start->i,故只需判断每个结点i是否就是stop

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR