Skip to content

Instantly share code, notes, and snippets.

View dehlen's full-sized avatar

David v.Knobelsdorff dehlen

View GitHub Profile
@dehlen
dehlen / SandboxDirectoryAccess.swift
Created October 24, 2025 11:45
macOS Sandbox Wrapper
import Foundation
import AppKit.NSOpenPanel
class SandboxDirectoryAccess {
static let shared: SandboxDirectoryAccess = SandboxDirectoryAccess()
private var bookmarks = [URL: Data]()
init() {}
func openFolderSelection(then handler: @escaping (URL?) -> Void) {