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

org.mlflow.utils.FileUtils Maven / Gradle / Ivy

package org.mlflow.utils;

import java.nio.file.Path;
import java.nio.file.Paths;

/** Utilities for manipulating files and file paths */
public class FileUtils {
  /** Concatenates file paths together and returns the result as a string */
  public static String join(String basePath, String... morePaths) {
    Path filePath = Paths.get(basePath, morePaths);
    return filePath.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy