Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
object FsUtil
Link copied to clipboard

The External API interface for interacting with non-sandboxed files/directories. A ref must be picked for a starting point.

Link copied to clipboard

The Internal API interface for interacting with sandboxed files/directories

Link copied to clipboard
interface IKmpFs
Link copied to clipboard
Link copied to clipboard
data class KmpFileMetadata(val size: Long)

KmpFileMetadata defines metadata for files. Only size is supported for now.

Link copied to clipboard
data class KmpFileMimetype(val extension: String, val mimeType: String)

Defines a common MimeType interface

Link copied to clipboard
object KmpFs

KmpFs Provides limited multiplatform (iOS, Android, Desktop, and Web Browser) filesystem interactions both inside and outside application sandboxes in iOS and Android via a mostly unified API. KmpFs is split into two primary APIs: IInternalKmpFs and IExternalKmpFs which both implement IKmpFs.

Link copied to clipboard
actual data class KmpFsContext
expect class KmpFsContext
actual data class KmpFsContext
actual class KmpFsContext
actual class KmpFsContext
Link copied to clipboard
sealed class KmpFsError : Throwable
Link copied to clipboard
@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.

Link copied to clipboard
data class KmpFsRefListItem(val depth: Int, val ref: KmpFsRef)

Returned from IKmpFs.listWithDepth

Link copied to clipboard

The KmpFs API being used

Link copied to clipboard

The write mode for a sink

Functions

Link copied to clipboard
actual suspend fun internalClearPersistedDataCache(ref: KmpFsRef?)
Link copied to clipboard
Link copied to clipboard
actual suspend fun onKmpFileRefPersisted(ref: KmpFsRef)
Link copied to clipboard
Link copied to clipboard
actual fun platformInternalKmpFs(): IInternalKmpFs
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>