Hello,
Welcome to our Microsoft Q&A platform!
When you get a file from the Assets folder, you can use CopyAsync() method to copy it to the local folder. For example:
Windows::Foundation::IAsyncAction MainPage::ExampleCoroutineAsync( )
{
Windows::Storage::StorageFile file{
co_await Windows::Storage::StorageFile::GetFileFromApplicationUriAsync(Windows::Foundation::Uri{L"ms-appx:///Assets/LockScreenLogo.scale-200.png"})
};
co_await file.CopyAsync(ApplicationData::Current().LocalFolder());
}
Thanks.