gpt4 book ai didi

c# - Winrt c# 将图像从 Assets 复制到本地存储

转载 作者:太空狗 更新时间:2023-10-30 00:19:56 25 4
gpt4 key购买 nike

我今天来找你是因为我不知道如何将图像从 Assets 复制到本地存储。我尝试类似的东西:

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("appx:///Assets/image.png"));

await file.CopyAsync(ApplicationData.Current.LocalFolder, "image.png");

但它根本不起作用。有谁知道这样做对吗?谢谢你的时间,问候。

最佳答案

您的 Uri 方案无效。它应该是 ms-appx:,而不是 appx::

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("ms-appx:///Assets/image.png"));

await file.CopyAsync(ApplicationData.Current.LocalFolder, "image.png");

有关有效的 Uri 方案,请参阅此帖子:URI schemes supported in Windows 8 apps

关于c# - Winrt c# 将图像从 Assets 复制到本地存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15566570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com