将资源数组从资源保存到文件

将资源数组从资源保存到文件

本文介绍了将资源数组从资源保存到文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我正在创建一个代码,可以将Source of Byte从Resource保存到文件中。

所以我去解决方案资源管理器>属性>资源标签>并设置文件(ctrl + 5)。



这是我的代码:

  byte  [] picArray = System.IO.File.ReadAllBytes(Properties.Resources.File); 

System.IO.File.WriteAllBytes( @ Path,picArray );







此代码必须将(Properties.Resources.File)分配给picArray,但是它运行时出现错误路径中存在非法字符。在第一行,



我可以做些什么来解决这个问题?

提前感谢。

解决方案

Hi ,
I am creating a code that can save Array of Byte from Resource to a file .
So I go to Solution explorer > Properties > Resource tab > and set Files (ctrl + 5 ) .

This is my code :

byte[] picArray = System.IO.File.ReadAllBytes(Properties.Resources.File);

System.IO.File.WriteAllBytes(@"Path", picArray);




this code must Assign( Properties.Resources.File) to picArray , But it run with error "Illegal characters in path." in first line ,

what i can do to solve this problem ?
thanks in advance .

解决方案


这篇关于将资源数组从资源保存到文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 11:16