如何从SD卡中的Andr​​oid文件路径

如何从SD卡中的Andr​​oid文件路径

本文介绍了如何从SD卡中的Andr​​oid文件路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好我有在SD卡中的MP3文件。如何从SD卡中的MP3歌曲文件的路径。

hi all i have mp3 files in sd card. how to get file path of mp3 song from sd card.

请帮助我。

推荐答案

您可以从这个code得到SD卡的路径:

You can get the path of sdcard from this code:

File extStore = Environment.getExternalStorageDirectory();

然后指定文件夹名和文件名

Then specify the foldername and file name

有关例如:

"/LazyList/"+serialno.get(position).trim()+".jpg"

这篇关于如何从SD卡中的Andr​​oid文件路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 18:56