abstract fun deleteRecursive(path: String, recursive: Boolean, handler: Handler<AsyncResult<Void>>): FileSystem
Deletes the file represented by the specified path, asynchronously.
If the path represents a directory and recursive = true then the directory and its contents will be deleted recursively.
recursive - delete recursively?
handler - the handler that will be called on completion
Return
a reference to this, so the API can be used fluently