0

我有应用程序将录音 .3gp 文件存储在 SDCard 中的特定文件夹中,例如:- 录音。我想在单击它应该播放录音的路径时访问数据库中的该文件路径?任何帮助都将不胜感激。我正在使用该功能查找文件的链接

文件目录 = new File("sdcard/Recordings");

File file[] = directory.listFiles();  
            System.out.println("The length of files is " + file.length);

它不工作

提前致谢

4

1 回答 1

0

HereEnvironment.getExternalStorageDirectory()将在您的 SDCard 中创建路径。

File path = new File(Environment.getExternalStorageDirectory() + getResources().getString(R.string.YourPath));
path.mkdirs();

在 Strings.xml 中声明路径

<string name="YourPath">/Recordings/</string>

于 2012-04-26T12:56:14.887 回答