Skip to content

Repository files navigation

PathKit

Build Status

Effortless path operations in Swift.

Usage

letpath=Path("/usr/bin/swift")

Joining paths

letpath=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

letabsolutePath= path.absolute()

Normalize a path

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

letnormalizedPath= 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

letpaths=Path.glob("*.swift")

Contact

Kyle Fuller

License

PathKit is licensed under the BSD License.

About

Effortless path operations in Swift

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages