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

www.mys.com.file.utils.PathUtils Maven / Gradle / Ivy

There is a newer version: 1.0.6-RELEASE
Show newest version
package www.mys.com.file.utils;

import www.mys.com.utils.FileUtils;

public class PathUtils {

    public static String ROOT_PATH;
    public static String TEMP_PATH;

    static {
        try {
            ROOT_PATH = System.getProperty("user.dir");
        } catch (Exception e) {
            System.out.println("root path error.e=" + e);
        }
        TEMP_PATH = ROOT_PATH + "/temp_path";
        FileUtils.sureDir(TEMP_PATH);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy