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

name.remal.java.io.File.kt Maven / Gradle / Ivy

package name.remal

import java.io.File

fun File.forceDelete() = apply { toPath().delete() }
fun File.forceDeleteRecursively() = apply { toPath().deleteRecursively() }
fun File.createDirectories() = apply { toPath().createDirectories() }
fun File.createParentDirectories() = apply { toPath().createParentDirectories() }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy