本文介绍了文件流图像到文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

文件流图像到文件夹。

Filestream image to folder.

string imgname = "Pictures/" + pic1.jpg;
using (System.IO.FileStream fs = New System.IO.FileStream(Server.MapPath("imgname"), System.IO.FileMode.Append, System.IO.FileAccess.Write, System.IO.FileShare.Read, 8, System.IO.FileOptions.None)))
    {
        Byte[] byte1 = System.IO.File.ReadAllBytes(open.FileName);
        fs.Write(byte1, 0, byte1.Length);
        fs.Flush();
        fs.Close();
    }



open.FileName中的错误



我尝试了什么:



尝试了不同的Byte [] byte1 scenerios。没有用于图像。


Error in "open.FileName"

What I have tried:

Tried different Byte[] byte1 scenerios. None worked for an image.

推荐答案


这篇关于文件流图像到文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 21:09