toggle menu
korge-root
5.1.0
js
switch theme
search in API
korge-foundation
/
korlibs.js
/
DenoFsFile
Deno
Fs
File
js
external
interface
DenoFsFile
Members
Functions
close
Link copied to clipboard
js
abstract
fun
close
(
)
read
Link copied to clipboard
js
abstract
fun
read
(
data
:
Uint8Array
)
:
Promise
<
Double
?
>
read
Sync
Link copied to clipboard
js
abstract
fun
readSync
(
data
:
Uint8Array
)
:
Double
?
seek
Link copied to clipboard
js
abstract
fun
seek
(
pos
:
Double
,
whence
:
Int
)
:
Promise
<
Double
>
seek
Sync
Link copied to clipboard
js
abstract
fun
seekSync
(
pos
:
Double
,
whence
:
Int
)
:
Double
stat
Link copied to clipboard
js
abstract
fun
stat
(
)
:
Promise
<
DenoFileInfo
>
stat
Sync
Link copied to clipboard
js
abstract
fun
statSync
(
)
:
DenoFileInfo
truncate
Link copied to clipboard
js
abstract
fun
truncate
(
len
:
Double
?
=
definedExternally
)
:
Promise
<
Unit
>
truncate
Sync
Link copied to clipboard
js
abstract
fun
truncateSync
(
len
:
Double
?
=
definedExternally
)
write
Link copied to clipboard
js
abstract
fun
write
(
data
:
Uint8Array
)
:
Promise
<
Double
>
write
Sync
Link copied to clipboard
js
abstract
fun
writeSync
(
data
:
Uint8Array
)
:
Double