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

com.codename1.maven.PathUtil Maven / Gradle / Ivy

There is a newer version: 7.0.164
Show newest version
package com.codename1.maven;

import java.io.File;

/**
 * Utility for creatings file paths.
 */
public class PathUtil {
    public static String path(String... parts) {
        StringBuilder sb = new StringBuilder();
        for (String part : parts) {
            if (sb.length() > 0) {
                sb.append(File.separator);
            }
            sb.append(part);
        }
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy