com.fitbur.github.dockerjava.core.FilePathUtil Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.core;
import java.io.File;
import java.io.IOException;
import com.fitbur.github.dockerjava.api.DockerClientException;
public class FilePathUtil {
/**
* Return the relative path. Path elements are separated with / char.
*
* @param baseDir
* a parent directory of {@code file}
* @param file
* the file to get the relative path
* @return the relative path
*/
public static String relativize(File baseDir, File file) {
try {
baseDir = baseDir.getCanonicalFile();
file = file.getCanonicalFile();
return baseDir.toURI().relativize(file.toURI()).getPath();
} catch (IOException e) {
throw new DockerClientException(e.getMessage(), e);
}
}
}