Here is the problem: I open document with
func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL){}
save url like this: "/private/var/mobile/Containers/Data/Application/E8D502A1-7F9E-4E62-8DE3-7B66D711E35D/tmp/appName/15072021.ppdf»
and after some time i want to share this file with
UIDocumentInteractionController(url: url)
but
FileManager.default.fileExists(atPath: url.path)
returns false, so i cannot do that
can anybody help?