Tauri readTextFile
readTextFile(: , :FsOptions
):Promise
filePath
string
options?
<string
>
将文件读取为 UTF-8 编码的字符串。
例
import { readTextFile, BaseDirectory } from '@tauri-apps/api/fs';
// Read the text file in the `$APPCONFIG/app.conf` path
const contents = await readTextFile('app.conf', { dir: BaseDirectory.AppConfig });
Since: 1.0.0
参数
名字 | 类型 |
---|---|
filePath | string |
options | FsOptions |
Returns: Promise
<string
>