Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 992 Bytes

readme.md

File metadata and controls

32 lines (23 loc) · 992 Bytes

CircleCI Build Status Download

Syntactic Path Library

This library provides an operating-system-independent implementation of Unix-style paths, similar to the NIO UnixPath implementation.

Usage

Simple Gradle setup:

buildscript {
    repositories {
        jcenter()
    }
}

dependencies {
    compile 'com.palantir.syntactic-paths:syntactic-paths:0.6.0'
}

In Java:

Path foo = Paths.get("/a", "b").resolve("c");  // represents /a/b/c
Path bar = foo.relativize(Paths.get("/a"));  // represents b/c

License

This repository is made available under the Apache 2.0 License.