Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String dirPath(String filePath) {
        int pos = filePath.lastIndexOf("/");
        if (pos < 0)
            return filePath;
        return filePath.substring(0, pos + 1);
    }
}