IKmp Fs
Functions
Link copied to clipboard
Lists a directories files but also includes their relative depth to dir
Link copied to clipboard
Reads metadata of a ref
Link copied to clipboard
abstract suspend fun resolveDirectory(dir: KmpFsRef, name: String, create: Boolean = false): Outcome<KmpFsRef, KmpFsError>
Opens or creates a directory (if the create option is provided)
Link copied to clipboard
open suspend fun resolveDirectoryWithPath(dir: KmpFsRef, path: String, create: Boolean = false): Outcome<KmpFsRef, KmpFsError>
Resolves a file with a path that is not required to be a direct descendant of dir.
Link copied to clipboard
abstract suspend fun resolveFile(dir: KmpFsRef, name: String, create: Boolean = false): Outcome<KmpFsRef, KmpFsError>
Opens or creates a file (if the create option is provided)
Link copied to clipboard
open suspend fun resolveFileWithPath(dir: KmpFsRef, path: String, create: Boolean = false): Outcome<KmpFsRef, KmpFsError>
Resolves a file with a path that is not required to be a direct descendant of dir.