path-kit

1.1.0

Working with files and directories in a nice way using Swift.
BinaryBirds/path-kit

What's New

Project updates

2020-10-03T13:47:30Z
  • Swift 5.3 support
  • New basename property
  • Name returns lastPathComponent
  • Removed unnecessary test files
  • Directory separator for Windows

PathKit (💾)

Working with files and directories in a nice way using Swift.

Usage

Some examples:

import PathKit

let caches = Path.systemDirectory(for: .caches)
let home = Path.home
let parent = home.parent
let root = Path.root
let current = Path.current
let test = current.child("test")

print(test.isDirectory)
print(test.children().filter(\.isFile))

do {
    let work = try home.add("my-work-dir")
    print(work.location)

    try test.delete()
    try test.create()
    
    let a = current.child("a")
    try a.create()
    
    let b = current.child("b")
    let c = current.child("c")
    let d = current.child("d")

    try a.copy(to: b)
    try a.link(to: c)
    try a.move(to: d, force: true)
}
catch {
    print(error.localizedDescription)
}

Install

Just use the Swift Package Manager as usual:

.package(url: "https://github.com/binarybirds/path-kit", from: "1.0.0"),

Don't forget to add "PathKit" to your target as a dependency!

.product(name: "PathKit", package: "path-kit"),

That's it.

License

WTFPL - Do what the fuck you want to.

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Mon Mar 25 2024 01:24:24 GMT-0900 (Hawaii-Aleutian Daylight Time)