在 LightSwitch 中获取其他文件

发布于 2024-12-07 02:32:25 字数 276 浏览 0 评论 0原文

我想向 LightSwitch 应用程序添加其他文件(主要是 .xlsx.docx),并在应用程序中使用这些文件,例如作为文件流。

做到这一点的最佳方法/做法是什么?

到目前为止,我可以将文件添加到客户端项目(在文件视图下)。当我进行调试构建或发布应用程序时,此文件会显示在 bin\debug\bin\Server 目录中。现在是棘手的部分。

如何获取该文件的文件流?

安装在哪个目录下?

I want to add additional files (mostly .xlsx and .docx) to a LightSwitch application and use this files in the application, for example as a filestream.

What is the best way/practice to do this?

So far I can add files to the client-project (under the file-view). This file then shows in the bin\debug\bin\Server directory when I make a debug-build or publish the application. So now comes the tricky part.

How do I get a file stream of this files?

In which directory is it installed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羞稚 2024-12-14 02:32:25

点击发布按钮后,我自己弄清楚了。这个 博文描述了如何使用嵌入资源作为图像。

当您将文件添加到客户端项目时,您必须将构建操作设置为“嵌入式资源”,然后您可以使用以下代码获取流:

// get the currently executing assembly
Assembly assembly = Assembly.GetExecutingAssembly();

// list all available ResourceName's
string[] resources = assembly.GetManifestResourceNames();

// creates a StreamReader from the TestFile.txt
StreamReader sr = new StreamReader(assembly
            .GetManifestResourceStream("LightSwitchApplication.TestFile.txt"));

// puts the content of the TestFile.txt in a string
string text = sr.ReadToEnd();

After hitting the post-button I figured it out myself. This blog post describes how to use embedded resources as images.

When you have added a file to the client-project, you have to set build action to “Embedded Resource” and then you can get a stream using the following code:

// get the currently executing assembly
Assembly assembly = Assembly.GetExecutingAssembly();

// list all available ResourceName's
string[] resources = assembly.GetManifestResourceNames();

// creates a StreamReader from the TestFile.txt
StreamReader sr = new StreamReader(assembly
            .GetManifestResourceStream("LightSwitchApplication.TestFile.txt"));

// puts the content of the TestFile.txt in a string
string text = sr.ReadToEnd();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文