Fix saving media
This commit is contained in:
parent
aa4aefe9dc
commit
90ed830b33
|
@ -143,10 +143,11 @@ public class MediaHelper {
|
||||||
public void onResourceReady(@NotNull File file, Transition<? super File> transition) {
|
public void onResourceReady(@NotNull File file, Transition<? super File> transition) {
|
||||||
final String fileName = URLUtil.guessFileName(url, null, null);
|
final String fileName = URLUtil.guessFileName(url, null, null);
|
||||||
|
|
||||||
|
|
||||||
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
|
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
|
||||||
final String targeted_folder = path + "/" + context.getString(R.string.app_name);
|
File targeted_folder = new File(path, context.getString(R.string.app_name));
|
||||||
if (!new File(targeted_folder).exists()) {
|
if (!targeted_folder.exists()) {
|
||||||
new File(targeted_folder).mkdir();
|
targeted_folder.mkdir();
|
||||||
}
|
}
|
||||||
FileInputStream fis = null;
|
FileInputStream fis = null;
|
||||||
FileOutputStream fos = null;
|
FileOutputStream fos = null;
|
||||||
|
|
Loading…
Reference in New Issue