Swiftpack.co - Frizlab/swift-xdg as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Frizlab.
Frizlab/swift-xdg 1.0.0
Implementation of the XDG Base Directory Specification in Swift
ā­ļø 1
šŸ•“ 7 weeks ago
iOS macOS watchOS tvOS
.package(url: "https://github.com/Frizlab/swift-xdg.git", from: "1.0.0")

swift-xdg

Implementation of the XDG Base Directory Specification in Swift.

This package has been largely inspired by a Rust implementation.

Usage

let dirs = try BaseDirectories(prefixAll: "my-amazing-app")
/* Get existing configuration path. */
let confPath = try dirs.findConfigFile("conf.toml")
/* If all paths are needed, just add an ā€œsā€. */
let confPaths = try dirs.findConfigFiles("conf.toml")
/* Get path for writing new config.
 * The method makes sure the parent directory exists for the file 
 *  and return the path where the file should be. */
let newConfPath = try dirs.ensureParentsForConfigFilePath("conf.toml")

This particular implementation of the Base Directory Specification makes sure the paths returned never escape the homes in which they should be.

For instance if XDG_CONFIG_HOME=/home/frizlab/.config, we make sure none of the functions that return a config path in this package would return a path outside of this folder, whichever prefixes and file names are required.

A simple example: let confPath = try dirs.findConfigFile("../conf.toml") will throw.

GitHub

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

Dependencies

Release Notes

Swift XDG 1.0 beta 1.0.1
19 weeks ago

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