react-native-fs
react-native-fs copied to clipboard
Location of a created file on ios.
Where can we see the created/downloaded files(photos, docs, pdf) in the real ios device? Photos can be seen in the photos of the iPhone, but what about other documents? I am creating an app where I am supposed to store the documents downloaded from the app on the device just like WhatsApp. But in ios, WhatsApp doesn't show any folder named as whatsapp. Can you please help me with this.
You can enable file sharing between your app and the Files app using the UISupportsDocumentBrowser
property and setting it to Yes
in your Info.plist file. See this.
UISupportsDocumentBrowser
Tnks! Solved <3