首页 > 代码库 > 文件生成二进制流,二进制流生成文件
文件生成二进制流,二进制流生成文件
- #region 将二进制转化为文件
- public static string ConvertByteToFile(object objData, string filePathName)
- {
- //string fileName = "";
- //fileName = new PublicConst().PathTempFile + fileName;
- string folder = System.IO.Path.GetDirectoryName(filePathName);
- if (!System.IO.Directory.Exists(folder))
- {
- System.IO.Directory.CreateDirectory(folder);
- }
- if (System.IO.File.Exists(filePathName))
- {
- try
- {
- System.IO.File.Delete(filePathName);
- }
- catch
- {
- //("FileInUse");
- return "";
- }
- }
- System.IO.FileStream fs = new System.IO.FileStream(filePathName, System.IO.FileMode.Create, System.IO.FileAccess.Write);
- System.IO.BinaryWriter w = new System.IO.BinaryWriter(fs);
- try
- {
- w.Write(objData as byte[]);
- }
- catch (Exception)
- {
- }
- finally
- {
- w.Close();
- fs.Close();
- }
- return filePathName;
- }
- #endregion
- #region 将文件转化为二进制
- public static byte[] ConvertFileToByte(string fileName)
- {
- if (!System.IO.File.Exists(fileName))
- {
- return null;
- }
- System.IO.FileStream fs = new System.IO.FileStream(fileName, System.IO.FileMode.Open,System.IO.FileAccess.Read,FileShare.ReadWrite);
- byte[] nowByte = new byte[(int)fs.Length];
- try
- {
- fs.Read(nowByte, 0, (int)fs.Length);
- return nowByte;
- }
- catch (Exception)
- {
- return null;
- }
- finally
- {
- fs.Close();
- }
- }
- #endregion
文件生成二进制流,二进制流生成文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。