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

com.github.bingoohuang.utils.file.Pathx Maven / Gradle / Ivy

The newest version!
package com.github.bingoohuang.utils.file;

public class Pathx {
    public static String userHome = System.getProperty("user.home");
    public static String userDir = System.getProperty("user.dir");

    public static String expandUserHome(String text) {

        return text.replaceFirst("~", userHome);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy