Here you can find the source of getUnixRelativePath(File base, File path)
public static String getUnixRelativePath(File base, File path)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static String getUnixRelativePath(File base, File path) { return base.toURI().relativize(path.toURI()).getPath().replace("\\", "/"); }/*www .j a v a2s .c o m*/ }