Files
termora/src/test/kotlin/app/termora/vfs/TestFileSystem.kt
2025-06-21 17:01:15 +08:00

11 lines
200 B
Kotlin

package app.termora.vfs
import okio.Path.Companion.toPath
import kotlin.test.Test
class TestFileSystem {
@Test
fun test() {
println(okio.FileSystem.SYSTEM.list(".".toPath()))
}
}