I see below example in the document, where we copy file from APPCONFIG/app.conf to APPCONFIG/app.conf.bk
import { copyFile, BaseDirectory } from '@tauri-apps/api/fs';
// Copy the $APPCONFIG/app.conf file to $APPCONFIG/app.conf.bk
await copyFile('app.conf', 'app.conf.bk', { dir: BaseDirectory.AppConfig });
Is there a way we can copy this file to local assets folder ???