I have a button import file when i click on it i launch this function
.fileImporter( isPresented: $isImporting, allowedContentTypes: [.data], allowsMultipleSelection: false ) { result in do { guard let selectedFile: URL = try result.get().first else { return } .... Everything works fine when i click on import button the system open a folder by default called Payload,
but i want to open the external storage by default
is there a way to tell if there is an external storage open this folder by default if it does not exist let apple decide ?
Thank you for your responses