sorry for the question but i can't find a solution or i can't understand ... until now I was using the function.
func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
// Importo
if controller.documentPickerMode == .import {
my code
}
// Esporto
if controller.documentPickerMode == .exportToService {
may code
}
now, .documentPickerMode in ios 14 is no longer present, how can I get the same result? or will he know if I come from import or export?
TKS