Is there any way to prohibit exporting files in my UIDocumentBrowserViewController
-based application that also provides a FileProvider
?
- The user should only be allowed to view and edit files in the app.
- The user should be able to move files around within the
FileProvider
resource, add new folders, ...
Context:
- I'm building an enterprise app that grants access to a network file system with sensitive information.
- I'm using a
FileProvider
extension that only can be used inside my app. - I thought of achieving this via the
FPUIActionExtensionViewController
by throwing authentication errors if theFileProvider
is being accessed from other apps. - I want to avoid building my own UI and use the one that Apple provides for free.