Here you can find the source of getParentPath(String fullpath)
public static String getParentPath(String fullpath)
//package com.java2s; import java.io.File; public class Main { public static String getParentPath(String fullpath) { File file = new File(fullpath); if (file == null) { return ""; }/*ww w . j a v a 2s .c o m*/ if (file.getParentFile() == null) { return ""; } return file.getParentFile().getPath(); } }