
io.afu.utils.os.path.PathUtils Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy