gpt4 book ai didi

c# - Windows 8 文件访问和 ms-appx :///protocol

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:40 25 4
gpt4 key购买 nike

是否可以在不使用“ms-appx:///”协议(protocol)的情况下在 Windows 8 C# 中访问文件(例如图像、音频和视频)?

最佳答案

如果您正在访问最终用户的图像/等,您可以在没有 ms-appx 的情况下这样做(其中文件的类型为 StorageFile):

var fileStream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);
BitmapImage img = new BitmapImage();
img.SetSource(fileStream);

如果您包括图像/等。在您的应用程序中,然后您可以使用 ms-appx 协议(protocol)。它本质上意味着“从应用程序包中获取”。但您也可以使用相对路径。参见 this article on how to load file resources .

关于c# - Windows 8 文件访问和 ms-appx :///protocol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14431904/

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