Mosaic
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
Mosaic
mosaic-client
/
dev.catbit.mosaic.client.data.data_sources.file_system
/
MosaicFileSystem
Mosaic
File
System
interface
MosaicFileSystem
Inheritors
MosaicFileSystemImpl
Members
Functions
delete
File
Link copied to clipboard
abstract
suspend
fun
deleteFile
(
fileName
:
String
)
file
Exists
Link copied to clipboard
abstract
suspend
fun
fileExists
(
fileName
:
String
)
:
Boolean
get
File
Link copied to clipboard
abstract
suspend
fun
getFile
(
fileName
:
String
)
:
ByteArray
?
get
File
Platform
File
Link copied to clipboard
abstract
suspend
fun
getFilePlatformFile
(
fileName
:
String
)
:
PlatformFile
?
get
File
Streaming
Link copied to clipboard
abstract
suspend
fun
getFileStreaming
(
fileName
:
String
)
:
Flow
<
ByteArray
>
?
save
File
Link copied to clipboard
abstract
suspend
fun
saveFile
(
fileName
:
String
,
data
:
ByteArray
)
save
File
Streaming
Link copied to clipboard
abstract
suspend
fun
saveFileStreaming
(
fileName
:
String
,
data
:
Flow
<
ByteArray
>
)