ISPO SDK
ISPO
Preparing search index...
core
SharedFileApi
Interface SharedFileApi
Markdown
Copy Markdown
Deprecated
Shared path storage is retained only for legacy importers.
interface
SharedFileApi
{
list
(
path
?:
string
)
:
Promise
<
string
[]
>
;
put
(
content
:
string
|
Uint8Array
<
ArrayBufferLike
>
,
options
?:
{
name
?:
string
}
,
)
:
Promise
<
SharedPutResult
>
;
read
(
path
:
string
)
:
Promise
<
string
>
;
write
(
path
:
string
,
content
:
string
)
:
Promise
<
SharedWriteResult
>
;
writeBinary
(
path
:
string
,
content
:
Uint8Array
)
:
Promise
<
SharedWriteResult
>
;
}
Index
Methods
list
put
read
write
write
Binary
Methods
list
list
(
path
?:
string
)
:
Promise
<
string
[]
>
Parameters
Optional
path
:
string
Returns
Promise
<
string
[]
>
put
put
(
content
:
string
|
Uint8Array
<
ArrayBufferLike
>
,
options
?:
{
name
?:
string
}
,
)
:
Promise
<
SharedPutResult
>
Parameters
content
:
string
|
Uint8Array
<
ArrayBufferLike
>
Optional
options
:
{
name
?:
string
}
Returns
Promise
<
SharedPutResult
>
read
read
(
path
:
string
)
:
Promise
<
string
>
Parameters
path
:
string
Returns
Promise
<
string
>
write
write
(
path
:
string
,
content
:
string
)
:
Promise
<
SharedWriteResult
>
Parameters
path
:
string
content
:
string
Returns
Promise
<
SharedWriteResult
>
write
Binary
writeBinary
(
path
:
string
,
content
:
Uint8Array
)
:
Promise
<
SharedWriteResult
>
Parameters
path
:
string
content
:
Uint8Array
Returns
Promise
<
SharedWriteResult
>
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Methods
list
put
read
write
write
Binary
ISPO
ISPO SDK
Loading...
Deprecated
Shared path storage is retained only for legacy importers.