PathKit

1.0.2

Effortless path operations in Swift
MFB-Technologies-Inc/PathKit

What's New

v1.0.2

2024-03-08T21:34:07Z

What's Changed

New Contributors

Full Changelog: 1.0.1...1.0.2

PathKit

Fork of https://github.com/kylef/PathKit

Effortless path operations in Swift.

Usage

let path = Path("/usr/bin/swift")

Joining paths

let path = Path("/usr/bin") + Path("swift")

Determine if a path is absolute

path.isAbsolute

Determine if a path is relative

path.isRelative

Determine if a file or directory exists at the path

path.exists()

Determine if a path is a directory

path.isDirectory()

Get an absolute path

let absolutePath = path.absolute()

Normalize a path

This cleans up any redundant .. or . and double slashes in paths.

let normalizedPath = path.normalize()

Deleting a path

path.delete()

Moving a path

path.move(newPath)

Current working directory

Path.current
Path.current = "/usr/bin"

Changing the current working directory

path.chdir {
  // Path.current would be set to path during execution of this closure
}

Children paths

path.children()

Reading

path.read()

Writing

path.write("Hello World!")

Glob

let paths = Path.glob("*.swift")

License

PathKit is licensed under the BSD License.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Sat May 24 2025 22:46:24 GMT-0900 (Hawaii-Aleutian Daylight Time)