Java tutorial
//package com.java2s; public class Main { protected static String getDirPath(String dir) { int index = dir.lastIndexOf("/"); String path; if (index > 0) { path = dir.substring(0, index); } else { path = ""; } return path; } }