suspend fun FileSystem.mkdirsAwait(path: String): Unit
Create the directory represented by path and any non existent parents, asynchronously.
Return
a reference to this, so the API can be used fluently *
suspend fun FileSystem.mkdirsAwait(path: String, perms: String): Unit
Create the directory represented by path and any non existent parents, asynchronously.
perms - the permissions string
Return
a reference to this, so the API can be used fluently *