tauri_sys::fs

Function rename_file

Source
pub async fn rename_file(
    old_path: &Path,
    new_path: &Path,
    dir: BaseDirectory,
) -> Result<(), Error>
Expand description

Renames a file.

ยงExample

use tauri_sys::fs;

fs::rename_file(old_path, new_path, BaseDirectory::Download).expect("could not rename file");

Requires allowlist > fs > renameFile to be enabled.