码迷,mamicode.com
首页 > Windows程序 > 详细

C# 导出资源文件到硬盘

时间:2016-11-24 07:42:02      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:void   dem   button   private   exe程序   auth   点击   resource   技术   

技术分享

 

我把一个exe应用程序添加了资源里面,

我想,程序运行之后,点击按钮之后,就把这个资源文件导出到硬盘,

代码如下:

private void button1_Click(object sender, EventArgs e)
        {
            byte[] temp = AuthDemo.Properties.Resources.LogView;
            System.IO.FileStream fileStream = new System.IO.FileStream(Application.StartupPath + @"\test.exe", System.IO.FileMode.CreateNew);
            fileStream.Write(temp, 0, (int)(temp.Length));
            fileStream.Close();
        }

我们导出到了程序运行目录,并且名称为test.exe,我们试下exe程序是否能正常运行,下面如图所示,能正常运行哈。

 

C# 导出资源文件到硬盘

标签:void   dem   button   private   exe程序   auth   点击   resource   技术   

原文地址:http://www.cnblogs.com/testsec/p/6095865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!