All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.afu.utils.os.path.PathUtils Maven / Gradle / Ivy

There is a newer version: 0.0.55-RELEASE
Show newest version
package io.afu.utils.os.path;

public class PathUtils {

    public static String getFatherPathForFile(String filePath){




        if (filePath.contains("\\")){
            return filePath.substring(0,filePath.lastIndexOf("\\"));
        }else if (filePath.contains("/")){
            return filePath.substring(0,filePath.lastIndexOf("/"));
        }

        return "";
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy