Here you can find the source of relativeFrom(File from, File to)
public static String relativeFrom(File from, File to)
//package com.java2s; // {LICENSE}//from www .java 2 s .c o m import java.io.File; public class Main { public static String relativeFrom(File from, File to) { return from.toURI().relativize(to.toURI()).getPath(); } }