delete

fun delete(vararg paths: Any): Boolean(source)

Deletes files and directories.

This will not follow symlinks. If you need to follow symlinks too use delete.

Return

true if anything got deleted, false otherwise

Parameters

paths

Any type of object accepted by file


fun delete(configuration: DeleteSpec.() -> Unit): WorkResult(source)

Deletes the specified files.

Return

WorkResult that can be used to check if delete did any work.

Parameters

configuration

The block to use to configure the DeleteSpec.