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

indigoplugin.utils.Utils.scala Maven / Gradle / Ivy

The newest version!
package indigoplugin.utils

import os._

object Utils {

  def ensureDirectoryAt(path: Path): Path = {
    os.remove.all(path)
    os.makeDir.all(path)

    path
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy