如何使用预定义的名称将文件保存到外部存储,例如myfile_date.mp4?
答案 0 :(得分:0)
对于外部存储,我们使用基本智能做这样的事情..:
private String getFilename()
{
String timeStamp = new SimpleDateFormat("ddMMYYYY").format(new Date());
String MySound = "MySound";
String DefinedName = MySound+timeStamp;
filepath = Environment.getExternalStorageDirectory().getPath();
file = new File(filepath,AUDIO_RECORDER_FOLDER);
if(!file.exists()){
file.mkdirs();
}
return (file.getAbsolutePath() + "/" + DefinedName + file_exts[currentFormat]);
}