Skip to content

Instantly share code, notes, and snippets.

@DanielZanchi
Created May 4, 2022 11:58
Show Gist options
  • Save DanielZanchi/90ef20687af4aa62ab14d0a254097457 to your computer and use it in GitHub Desktop.
Save DanielZanchi/90ef20687af4aa62ab14d0a254097457 to your computer and use it in GitHub Desktop.
copy URL reference
if let fileRefURL = (url as NSURL).fileReferenceURL() as NSURL? {
print(fileRefURL)
let pasteboard = NSPasteboard.general
pasteboard.clearContents()
pasteboard.writeObjects([fileRefURL])
pasteboard.setString(fileRefURL.relativeString, forType: .fileURL)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment