获取内置/外置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

相关文章

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

图的最短路径算法——《啊哈!算法》

图的实现方式 邻接矩阵法 int[][] map;// 图的邻接矩阵存储法map = new int[5][5];map[0] = new int[] {0, 1, 2, 3, 4};map[1] = new int[] {1, 0, 2, 6, 4};map[2] = new int[] {2, 999, 0, 3, 999};map[3] = new int[] {3, 7

JS和jQuery获取节点的兄弟,父级,子级元素

原文转自http://blog.csdn.net/duanshuyong/article/details/7562423 先说一下JS的获取方法,其要比JQUERY的方法麻烦很多,后面以JQUERY的方法作对比。 JS的方法会比JQUERY麻烦很多,主要则是因为FF浏览器,FF浏览器会把你的换行也当最DOM元素。 <div id="test"><div></div><div></div

vcpkg子包路径批量获取

获取vcpkg 子包的路径,并拼接为set(CMAKE_PREFIX_PATH “拼接路径” ) import osdef find_directories_with_subdirs(root_dir):# 构建根目录下的 "packages" 文件夹路径root_packages_dir = os.path.join(root_dir, "packages")# 如果 "packages"

SOMEIP_ETS_095: SD_Check_subscribe_eventgroup_ttl_expired

测试目的: 验证DUT(Device Under Test)能够检测到测试器(Tester)的订阅已过期(ttl = 3秒),并且在TTL过期后不响应测试器触发的事件。 描述 本测试用例旨在确保DUT能够识别测试器的订阅已过期,并在订阅过期后不响应测试器通过TriggerEventUint8方法触发的事件。 测试拓扑: 具体步骤: TESTER:发送订阅事件组消息,用于事件组0x0

Python 内置的一些数据结构

文章目录 1. 列表 (List)2. 元组 (Tuple)3. 字典 (Dictionary)4. 集合 (Set)5. 字符串 (String) Python 提供了几种内置的数据结构来存储和操作数据,每种都有其独特的特点和用途。下面是一些常用的数据结构及其简要说明: 1. 列表 (List) 列表是一种可变的有序集合,可以存放任意类型的数据。列表中的元素可以通过索

Weex入门教程之4,获取当前全局环境变量和配置信息(屏幕高度、宽度等)

$getConfig() 获取当前全局环境变量和配置信息。 Returns: config (object): 配置对象;bundleUrl (string): bundle 的 url;debug (boolean): 是否是调试模式;env (object): 环境对象; weexVersion (string): Weex sdk 版本;appName (string): 应用名字;