Tauri fontDir
fontDir(): Promise
<string
>
返回用户字体目录的路径。
特定于平台
- Linux:解析为
$XDG_DATA_HOME/fonts
$HOME/.local/share/fonts
- macOS:解析为
$HOME/Library/Fonts
- windows:不支持。
例
import { fontDir } from '@tauri-apps/api/path';
const fontDirPath = await fontDir();
Since: 1.0.0
Returns: Promise
<string
>