Clear Old CSV and download new one

Where is my //filename.csv on my android? Can I overwrite it with new data manually? Why does /filename.csv not find my file on SD card? Thanks.

  1. It is in your app assets (media folder)
  2. It is read only, so you cannot overwrite it
  3. You cannot find it with a single / because a double // is required to locate the file in your assets
  4. You would need to copy your file from the assets to a readable/writeable location for your app (such as your application specific directory (ASD - single / files are here) or to a Shared directory (Documents or Downloads)

Thank you.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.