Skip to content

Instantly share code, notes, and snippets.

@Sciss
Created December 23, 2019 09:36
Show Gist options
  • Save Sciss/d36a2861b9513e5a9b15ef4d18857ecc to your computer and use it in GitHub Desktop.
Save Sciss/d36a2861b9513e5a9b15ef4d18857ecc to your computer and use it in GitHub Desktop.
import java.awt.Desktop
Desktop.isDesktopSupported // true
val d = Desktop.getDesktop
d.isSupported(Desktop.Action.APP_ABOUT) // false
d.isSupported(Desktop.Action.BROWSE_FILE_DIR) // false
d.browseFileDirectory(
new java.io.File("/home/hhrutz/Pictures/lucre/IMG_7565.JPG"))
d.isSupported(Desktop.Action.OPEN) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment