Skip to content

neoneye/SwiftyRelativePath

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SwiftyRelativePath

This is a Swift equivalent of Ruby's Pathname.relative_path_from() or Java's Path.relativize().

Example of inputs and outputs:

| Long Path                 | Relative to Path | Return Value      |
|---------------------------|------------------|-------------------|
| /usr/X11/agent/47.gz      | /usr/X11         | agent/47.gz       |
| /usr/share/man/meltdown.1 | /usr/share/cups  | ../man/meltdown.1 |
| /var/logs/x/y/z/log.txt   | /var/logs        | x/y/z/log.txt     |

Usage

import SwiftyRelativePath

let url0 = URL(fileURLWithPath: "/computer/qubit/17")
let url1 = URL(fileURLWithPath: "/computer/lab")
let path = url0.relativePath(from: url1)
// path is "../qubit/17"

Credits

License

MIT License.

About

Swift equivalent of Ruby's "Pathname.relative_path_from()"

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages