SNRK-48: Add method

This commit is contained in:
Kirill Grachev 2023-04-15 00:14:38 +03:00
parent 6e9eb88934
commit 7127d3582d

View File

@ -9,6 +9,7 @@ public interface Directory : AutoCloseable {
public suspend fun put(filename: String): FileWriter?
public suspend fun getSubdir(path: Path): Directory?
public suspend fun createSubdir(dirname: String, ignoreIfExists: Boolean = false): Directory?
}
public interface FileReader : AutoCloseable {