PathKit alternatives and similar libraries
Based on the "Files" category.
Alternatively, view PathKit alternatives based on common mentions on social networks and blogs.
-
FileProvider
DISCONTINUED. FileManager replacement for Local, iCloud and Remote (WebDAV/FTP/Dropbox/OneDrive) files -- Swift [GET https://api.github.com/repos/amosavian/FileProvider: 403 - Repository access blocked]
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of PathKit or a related project?
README
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")
Contact
Kyle Fuller
License
PathKit is licensed under the [BSD License](LICENSE).
*Note that all licence references and agreements mentioned in the PathKit README section above
are relevant to that project's source code only.