Hello, I'm developing a FileProvider extension for MacOS where I want the default Drag and Drop behaviour to be Copy instead of Move. If one removes .allowsReparenting
from NSFileProviderItemProtocol.capabilities
this will make Copy being used when moving files out of the provider but when moving files in to the provider they are still being Moved.
Is there any way to control this behaviour? Essentially I always want files to be Copied instead of Moved when Dragging and Dropping files in and out of the extension making it behave more like a mounted volume. Thanks!