Tauri desktopDir
desktopDir(): Promise
<string
>
返回用户桌面目录的路径。
特定于平台
- Linux:解析为
xdg-user-dirs
XDG_DESKTOP_DIR
- macOS:解析为
$HOME/Desktop
- windows:解析为
{FOLDERID_Desktop}
例
import { desktopDir } from '@tauri-apps/api/path';
const desktopPath = await desktopDir();
Since: 1.0.0
Returns: Promise
<string
>