aidevjoe / SandboxBrowser

A simple iOS sandbox file browser, you can share files through AirDrop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A simple iOS sandbox file browser, you can share files through AirDrop

License:MIT License


Languages

Language:Swift 94.4%Language:Ruby 5.6%