I am trying to do a data backup for my React Native App with expo go and expo-file-system
await Filesystem.writeAsStringAsync(
Filesystem.documentDirectory! + "GymTracker-Data.json",
JSON.stringify(exportData)
)
How do I access this documentDirectory with a file explorer app like File Manager or Amaze File Manager?
I tried printing out the path on the app but I can't find said path.
