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

org.marid.fx.extensions.FileExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.9.8.10
Show newest version
@file:Suppress("UnstableApiUsage")

package org.marid.fx.extensions

import com.google.common.io.MoreFiles
import com.google.common.io.RecursiveDeleteOption
import java.nio.file.Path

fun Path.deleteDirectoryContents(vararg options: RecursiveDeleteOption) = MoreFiles.deleteDirectoryContents(this, *options)
fun Path.deleteDirectory(vararg options: RecursiveDeleteOption) = MoreFiles.deleteRecursively(this, *options)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy