GitHub - kylef/PathKit: Effortless path operations in Swift
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
Determine if a path is relative
Determine if a file or directory exists at the path
Determine if a path is a directory
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
Moving a path
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
Reading
Writing
path.write("Hello World!")
Glob
let paths = Path.glob("*.swift")
Contact
Kyle Fuller
License
PathKit is licensed under the BSD License.