Here you can find the source of getRelativePath(File base, File path)
private static String getRelativePath(File base, File path)
//package com.java2s; import java.io.File; public class Main { private static String getRelativePath(File base, File path) { return base.toPath().relativize(path.toPath()).toString(); }//from ww w. ja v a 2 s. c om }