If I create a Windows/Linux desktop application using Kotlin Compose Desktop, can I drag a file (i.e., the file path) from my application into another application? I could do it in C# (WinForms) relatively with the following two lines of code:
var data = new DataObject(DataFormats.FileDrop, filePathStringArray);
myListViewControl.DoDragDrop(data, DragDropEffects.Copy);