Tauri writeTextFile
writeTextFile(: , : , :FsOptions
):Promise
path
string
contents
string
options?
<void
>
写入 UTF-8 文本文件。
例
import { writeTextFile, BaseDirectory } from '@tauri-apps/api/fs';
// Write a text file to the `$APPCONFIG/app.conf` path
await writeTextFile('app.conf', 'file contents', { dir: BaseDirectory.AppConfig });
Since: 1.0.0
参数
名字 | 类型 |
---|---|
path | string |
contents | string |
options? | FsOptions |
Returns: Promise
<void
>
writeTextFile(:FsTextFileOption
, :FsOptions
):Promise
file
options?
<void
>
写入 UTF-8 文本文件。
例
import { writeTextFile, BaseDirectory } from '@tauri-apps/api/fs';
// Write a text file to the `$APPCONFIG/app.conf` path
await writeTextFile({ path: 'app.conf', contents: 'file contents' }, { dir: BaseDirectory.AppConfig });
Since: 1.0.0
参数
名字 | 类型 |
---|---|
file | FsTextFileOption |
options? | FsOptions |
Returns: Promise
<void
>
指示操作成功或失败的承诺。