如何将存储在c#Resources文件夹中的excel文件保存到磁盘?

时间:2015-02-18 09:58:14

标签: c#

我使用c#并且我已经存储了report.xls是"资源"文件夹如下图所示。如何将其保存到磁盘?

有什么建议吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

假设您已通过项目资源添加了report.xls作为资源文件:

enter image description here

using (System.IO.FileStream fs = new System.IO.FileStream("C:\\Somelocation\\report.xls", FileMode.OpenOrCreate, FileAccess.Write, FileShare.Write))
{
    byte[] data = Properties.Resources.report;
    fs.Write(data, 0, data.Length);
}