user2839950
user2839950

Reputation: 41

How to Save Files inside a folder in the App Folder ? Xamarin iOS

I am able to take a picture and save it inside the Document folder, but I want to save those files to a folder called pictures inside the ****.app folder, not to the Document folder, otherwise my given paths for view pictures will not work. Does anyone have any suggestions?

Upvotes: 2

Views: 2102

Answers (1)

Oliver Weichhold
Oliver Weichhold

Reputation: 10296

You can't write to the app's bundle - which is what you are trying to accomplish. The bundle folder is off limits.

You will need to resort to saving to Documents or Documents/../Library/Caches.

Upvotes: 3

Related Questions