com.github.mictaege.arete_gradle.JavaExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arete-gradle Show documentation
Show all versions of arete-gradle Show documentation
Gradle reporting plugin for the Arete JUnit5 testing framework.
The newest version!
package com.github.mictaege.arete_gradle
import java.io.File
fun File.createAndWrite(content: String) {
if (!this.parentFile.exists()) {
this.parentFile.mkdirs()
}
if(this.exists()) {
this.delete()
}
this.createNewFile()
this.writeText(content)
}