Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>So if anyone has the same issue, apparently this is an ongoing and as of yet unresolved issue with the Download manager. I have used a little bit of a work around which you might want to use if your flow is similar to mine. Basically every time that the user opens the app two files are automatically downloaded to the SD card which overwrites the two files previously downloaded. So all i did was add a couple of extra functions to delete the duplicates...</p> <pre><code> File sdCard = Environment.getExternalStorageDirectory(); File file = new File(sdCard.getAbsolutePath() + "/Download/", client); Log.d("file path", String.valueOf(file)); if(file.exists()) { boolean flag = file.delete(); Log.d("file", "file deleted " + flag); } File sdCardextra = Environment.getExternalStorageDirectory(); File fileextra = new File(sdCardextra.getAbsolutePath() + "/Download/", clientextra); boolean exist = fileextra.exists(); Log.d("the file exists = ", String.valueOf(exist)); if(fileextra.exists()) { boolean flag = fileextra.delete(); Log.d("file", "file deleted " + flag); } File sdCard2 = Environment.getExternalStorageDirectory(); File file2 = new File(sdCard2.getAbsolutePath() + "/Download/", "clientraw-1.txt"); Log.d("file path", String.valueOf(file2)); if(file2.exists()) { boolean flag = file2.delete(); Log.d("file", "file deleted " + flag); } File sdCardextra3 = Environment.getExternalStorageDirectory(); File fileextra3 = new File(sdCardextra3.getAbsolutePath() + "/Download/", "clientrawextra-1.txt"); boolean exists = fileextra3.exists(); Log.d("the file exists = ", String.valueOf(exists)); if(fileextra3.exists()) { boolean flag = fileextra3.delete(); Log.d("file", "file deleted " + flag); } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload