SandboxBrowser 0.0.5

SandboxBrowser 0.0.5

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jul 2023
SPMSupports SPM

Maintained by Joe0708.



  • By
  • Joe

SandboxBrowser

Version License Platform

A simple iOS sandbox file browser, enable you to view sandbox file system on iOS device, share files via airdrop, super convenient when you want to send log files from iOS device to Mac. reference from AirSandbox, Thanks !

Screenshots

Installation

To integrate SandboxBrowser into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'SandboxBrowser'

Then, run pod install.

Usage

import SandboxBrowser
let sandboxBrowser = SandboxBrowser()
present(sandboxBrowser, animated: true, completion: nil)

Open the sandbox directory by default, and you can specify the directory

let sandboxBrowser = SandboxBrowser(initialPath: customURL)

Use the didSelectFile closure to change FileBrowser's behaviour when a file is selected.

sandboxBrowser.didSelectFile = { file, vc in
    print(file.name, file.type)
}

Long press file share via AirDrop

License

MIT