flutter-plugins icon indicating copy to clipboard operation
flutter-plugins copied to clipboard

[desktop_drop] macos DropDoneDetails support apple bookmark

Open izouxv opened this issue 1 year ago • 2 comments

[desktop_drop] macos DropDoneDetails support apple bookmark

izouxv avatar Nov 19 '22 12:11 izouxv

Thanks for the contribution.

I am not familiar with macOS api and I don't know what is the bookmark actually.

Can you add some example usage to the plugin example project so I can see it really worked?

boyan01 avatar Nov 20 '22 10:11 boyan01

apple bookmark

apple bookmark2

in macos, the file path from a file picker can't be used next time, because the path is not permit. usually use bookmark to call startAccessingSecurityScopedResource to get permit like this, so It is necessary to obtain bookmarks at the same time from desktop_drop

var isStale: Bool = false 
let url = try! URL(resolvingBookmarkData: bookmark, bookmarkDataIsStale: &isStale) 
let suc = url.startAccessingSecurityScopedResource()

izouxv avatar Nov 21 '22 02:11 izouxv