Swiftpack.co - sciasxp/LNFileUtils as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by sciasxp.
sciasxp/LNFileUtils 0.3.2
A collection of tools to easily handle file management
⭐️ 0
🕓 1 year ago
iOS
.package(url: "https://github.com/sciasxp/LNFileUtils.git", from: "0.3.2")

LNFileUtils

Just some tools to make handling Data storage easier.

Minimum Requirements

This framework will be usable by iOS 13 and above or MacOS 10.15 and above.

Installing

SPM

LNFileUtils is available via SwiftPackage.

Add the following to you Package.swift file's dependencies:

.package(url: "https://github.com/sciasxp/LNSFileUtils.git", from: "0.2.0"),

Features

  • Save/Retrieve/Remove Data to UserDefaults with Key identifier.

  • Save/Retrieve/Remove Data to FileSystem with Key identifier.

  • UIImage extension to easily cache your images in different formats and compression quality.

How to Use

import LNFileUtils

Store / Retrieve / Remove Data on UserDefaults

let utils = FileUtils.shared

do {

    try utils.store (

        key: "defaultStorageTest", 

        data: <#Your Data Here#>, 

        on: .userDefaults

    )

} catch {}
let utils = FileUtils.shared

do {

    let data: Data? = try utils.retrieve (

        key: "defaultStorageTest", 

        on: .userDefaults

    )

} catch {}
let utils = FileUtils.shared

do {

    try utils.remove (

        key: "defaultStorageTest",

        on: .userDefaults

    )

} catch {}

Store / Retrieve / Remove Data on File System

let utils = FileUtils.shared

do {

    let url = try utils.store (

        key: "fileSystemCacheStorageTest", 

        data: <#Your Data Here#>, 

        on: .fileSystem(place: .cache)

    )

} catch {}
let utils = FileUtils.shared

do {

    let data: Data? = try utils.retrieve (

        key: "fileSystemCacheStorageTest",

        on: .fileSystem(place: .cache)

    )

} catch {}
let utils = FileUtils.shared

do {

    try utils.remove (

        key: "fileSystemCacheStorageTest",

        on: .fileSystem(place: .cache)

    )

} catch {}

place can be one of three values:

  1. cache

  2. document

  3. library

UIImage+Extension Store

let image = UIImage(systemName: "clock")!
do {
    try referenceImage.storeCache (
        with: "fileSystemCacheUIImageExtension",
        on: .fileSystem(place: .cache),
        as: .png
    )
} catch {}

Where on is same as place on FileUtils and as can be any of these formats:

UIImage+Extension Retrieve

do {
    let image = try UIImage.image (
        with: "fileSystemCacheUIImageExtension",
        on: .fileSystem(place: .cache),
        as: .png
    )
} catch {}

## Future Work

  1. Improve unit tests.

  2. Improve documentation.

  3. Support for cocoapods

Contributing

You are most welcome in contributing to this project with either new features (maybe one mentioned from the future work or anything else), refactoring and improving the code. Also, feel free to give suggestions and feedbacks. 

Created with ❤️ by Luciano Nunes.

Get in touch on [Email](https://raw.github.com/sciasxp/LNFileUtils/main/mailto: [email protected])

Visit:  LinkdIn

GitHub

link
Stars: 0
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics