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

org.vivoweb.tools.Utils Maven / Gradle / Ivy

The newest version!
package org.vivoweb.tools;

import java.io.File;

public class Utils {
    public static  File resolveFile(String baseDir, String filePath) {
        return new File(baseDir).toPath().resolve(filePath).toFile();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy