package com.chrisfolger.needsmoredojo.core.util;
public class FileUtil
{
/**
* taken from
* http://mrpmorris.blogspot.com/2007/05/convert-absolute-path-to-relative-path.html
*/
public static String convertToRelativePath(String absolutePath, String relativeTo) {
StringBuilder relativePath = null;
absolutePath = absolutePath.replaceAll("\\\\", "/");
relativeTo = relativeTo.replaceAll("\\\\", "/");
if (absolutePath.equals(relativeTo) == true) {
} else {
String[] absoluteDirectories = absolutePath.split("/");
String[] relativeDirectories = relativeTo.split("/");
//Get the shortest of the two paths
int length = absoluteDirectories.length < relativeDirectories.length ?
absoluteDirectories.length : relativeDirectories.length;
//Use to determine where in the loop we exited
int lastCommonRoot = -1;
int index;
//Find common root
for (index = 0; index < length; index++) {
if (absoluteDirectories[index].equals(relativeDirectories[index])) {
lastCommonRoot = index;
} else {
break;
//If we didn't find a common prefix then throw
}
}
if (lastCommonRoot != -1) {
//Build up the relative path
relativePath = new StringBuilder();
//Add on the ..
for (index = lastCommonRoot + 1; index < absoluteDirectories.length; index++) {
if (absoluteDirectories[index].length() > 0) {
relativePath.append("../");
}
}
for (index = lastCommonRoot + 1; index < relativeDirectories.length - 1; index++) {
relativePath.append(relativeDirectories[index] + "/");
}
relativePath.append(relativeDirectories[relativeDirectories.length - 1]);
}
}
return relativePath == null ? null : relativePath.toString();
}
}