W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
writeBinaryFile(: , :BinaryFileContents
, :FsOptions
):Promise
path
string
contents
options?
<void
>
將字節(jié)數組內容寫入文件。
import { writeBinaryFile, BaseDirectory } from '@tauri-apps/api/fs';
// Write a binary file to the `$APPDATA/avatar.png` path
await writeBinaryFile('avatar.png', new Uint8Array([]), { dir: BaseDirectory.AppData });
Since: 1.0.0
名字 | 類型 | 描述 |
---|---|---|
path | string | - |
contents | BinaryFileContents | - |
options? | FsOptions | Configuration 對象。 |
Returns: Promise
<void
>
指示操作成功或失敗的承諾。
writeBinaryFile(:FsBinaryFileOption
, :FsOptions
):Promise
file
options?
<void
>
將字節(jié)數組內容寫入文件。
import { writeBinaryFile, BaseDirectory } from '@tauri-apps/api/fs';
// Write a binary file to the `$APPDATA/avatar.png` path
await writeBinaryFile({ path: 'avatar.png', contents: new Uint8Array([]) }, { dir: BaseDirectory.AppData });
Since: 1.0.0
名字 | 類型 | 描述 |
---|---|---|
file | FsBinaryFileOption | 包含文件路徑和內容的對象。 |
options? | FsOptions | Configuration 對象。 |
Returns: Promise
<void
>
指示操作成功或失敗的承諾。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯系方式:
更多建議: