File Downloaded From Firebase Storage Get Stored?
I manually uploaded a pdf file to Firebase Storage . Now, I downloaded that file from my app using the method 'Download to a local file' as mentioned in the Firebase Storage docume
Solution 1:
You defined the download location in your code:
FilestoragePath=newFile(Environment.getExternalStorageDirectory(), "directory_name");
finalFilemyFile=newFile(storagePath,"IBM2013507.pdf");
Since you're downloading to myFile
, you can expect the find the file on the device's external storage directory in the "directory_name" folder with the file name "IBM2013507.pdf".
If you don't know where that is, try printing the value of myFile
to see the full path.
Post a Comment for "File Downloaded From Firebase Storage Get Stored?"