createDirectory

abstract fun createDirectory(    qualifiedName: String,     completion: () -> Unit,     failureHandler: (ErrorCode, Throwable?) -> Unit)

Create a directory.

Parameters

qualifiedName

The fully-qualified name of the directory.

completion

A function to be run upon the successful creation of the directory.

failureHandler

A function that accepts a ErrorCode that describes the failure and a nullableThrowable.