KmpFsRef

@Serializable
data class KmpFsRef

Represents a lightweight reference to a file/directory location. Refs do not contain any file data or file handles themselves, only a reference to a location. Refs also contain basic information like file/directory name and if it is a file or directory.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@SerialName(value = "4")
val fsType: KmpFsType
Link copied to clipboard
@SerialName(value = "3")
val isDirectory: Boolean
Link copied to clipboard
@SerialName(value = "2")
val name: String

Functions

Link copied to clipboard

Clears any cached data for a given ref. The WASM target requires caching ref data in a specific way to persist references. This will clear any cache data and render the persisted ref useless after the current session.

Link copied to clipboard
expect suspend fun KmpFsRef.sink(mode: KmpFsWriteMode = KmpFsWriteMode.Overwrite): Outcome<IKmpIoSink, KmpFsError>

Creates a writable sink for the ref

actual suspend fun KmpFsRef.sink(mode: KmpFsWriteMode): Outcome<IKmpIoSink, KmpFsError>
Link copied to clipboard

Creates a readable source for the ref

actual suspend fun KmpFsRef.source(): Outcome<IKmpIoSource, KmpFsError>
Link copied to clipboard

Creates a byteArray that is safe for persisting to a key/value store or a database for future use with KmpFsRef.fromPersistableBytes

Link copied to clipboard

Creates a string that is safe for persisting to a key/value store or a database for future use with KmpFsRef.fromPersistableString