Here you can find the source of isRelative(File target_)
public static boolean isRelative(File target_)
//package com.java2s; import java.io.File; public class Main { public static boolean isRelative(File target_) { if (target_ == null) return false; String path = target_.getPath(); if (path == null) return false; return path.startsWith("."); }/*from w w w .jav a 2 s . c o m*/ }