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

ckite.mapdb.FileSupport.scala Maven / Gradle / Ivy

package ckite.mapdb

import java.io.File

trait FileSupport {

  protected def file(dataDir: String, fileName: String): File = {
    val dir = new File(dataDir)
    dir.mkdirs()
    val file = new File(dir, fileName)
    file
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy