com.github.dreamhead.moco.util.Files Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moco-core Show documentation
Show all versions of moco-core Show documentation
Moco is an easy setup stub framework, mainly focusing on testing and integration.
package com.github.dreamhead.moco.util;
import java.io.File;
import static com.google.common.base.Preconditions.checkNotNull;
public final class Files {
public static String join(final String path1, final String path2, final String... paths) {
String finalPath = actualJoin(path1, path2);
for (String path : paths) {
finalPath = actualJoin(finalPath, path);
}
return finalPath;
}
private static String actualJoin(final String path1, final String path2) {
return joinFiles(path1, path2).getPath();
}
private static File joinFiles(final String path1, final String path2) {
checkNotNull(path2);
if (path1 == null) {
return new File(path2);
}
return new File(new File(path1), path2);
}
private Files() {
}
}