将SDcard中的文件链接存储到SQLite数据库

时间:2012-04-26 12:41:25

标签: android

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

文件目录=新文件(“sdcard / Recordings”);

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

它不起作用

提前致谢

1 个答案:

答案 0 :(得分:0)

此处Environment.getExternalStorageDirectory()将在您的SD卡中创建路径。

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

在Strings.xml中声明路径

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