Swift package to easily view, browse and manage files and data in your iOS app's directories.
Useful during development and debugging.
- View, browse and delete list of all files and folders in app's temporary folder, Documents and Library folders.
- Preview thumbnails and content.
- Create folder, import from Photos and Files apps.
Swift Package Manager:
dependencies: [
.package(url: "https://github.com/ntsh/DirectoryBrowser", .upToNextMajor(from: "0.1.0"))
]
Display DirectoryBrowser view from any SwiftUI view:
import DirectoryBrowser
// Display DirectoryBrowser()
.sheet(isPresented: $browse) {
DirectoryBrowser()
}
The DirectoryBrowser
library provides the UI components to easily view and manage files in your app's directories.
The DirectoryManager
library is the core of the package, providing the necessary functionality to browse and manage files via code.