suspend fun FileSystem.readDirAwait(path: String): List<String>
Read the contents of the directory specified by path, asynchronously.
Return
a reference to this, so the API can be used fluently *
suspend fun FileSystem.readDirAwait(path: String, filter: String): List<String>
Read the contents of the directory specified by path, asynchronously.
filter - the filter expression
Return
a reference to this, so the API can be used fluently *