Here you can find the source of relativePath(File baseDir, File child)
static String relativePath(File baseDir, File child)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { static String relativePath(File baseDir, File child) { return baseDir.toPath().relativize(child.toPath()).toString(); }/*w w w . j a va 2 s . c o m*/ }