将字节数组作为文件写入Web位置

时间:2016-06-21 16:44:51

标签: c# stream httpwebrequest

 private void CreateFile(byte[] outByteArray)
        {
            //Create a new file containing the returned PDF document 
            string filename = "C:\\myfile.pdf";
            FileStream fs2 = new FileStream(filename, FileMode.OpenOrCreate);
            BinaryWriter w = new BinaryWriter(fs2);
            w.Write(outByteArray);
            w.Close();
            fs2.Close();
        }

这是我目前的代码。 我正在写服务器的驱动器。它工作正常。

但现在我必须将字节数组写入Web文件夹

我的意思是某些文件夹,例如http://tyyet.com/rsfgqs/destination/ 并以名称myfile.pdf保存。

我该怎么做? 我可以使用HttpWebRequest吗?

0 个答案:

没有答案