Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道是否可以在应用程序文件夹中我需要的应用程序包中包含一些文件(在这种情况下为一个 txt 文件)。问题是我可能会使用一段代码,需要将许可证作为文本文件包含在应用程序中,我认为这是一种方法。
提前致谢。
当然,这实际上与包含图像没有什么不同。如果您需要在应用程序中处理文件,您可以通过其本地路径访问它或显式使用ms-appx:///协议。
ms-appx:///
有关更多详细信息,请参阅如何引用内容和如何加载文件资源。
只需将文件包含在您的项目中并Build Action设置为Content. 你可以把它放在你喜欢的任何文件夹中。
Build Action
Content
然后可以使用ms-appx:协议或StorageFolderAPI 从应用程序访问该文件:
ms-appx:
StorageFolder
var license = await Package.Current.InstalledLocation.GetFileAsync("license.txt");