In my app, I want download a zip file and unzip it.
In DownloadManager
request I use this:
request.setDestinationInExternalPublicDir("/SingingStudio", "file.zip");
This is write file in external storage.
And when I want to access file:
String szip = Environment.getExternalStorageDirectory()+File.separator+"SingingStudio"+File.separator+"file.zip";
This is get file from internal storage. And getExternalStoragePublicDirectory("/")
too.
So I can not find the file .