字节上传到服务器:

时间:2009-10-25 07:54:46

标签: c# file-upload

在我的应用程序中,我使用下面的代码将文件上传到服务器。

 response = (HttpWebResponse)request.GetResponse();

其中request.Method is "PUT".

有没有办法获得上传到服务器的字节数。

提前致谢

2 个答案:

答案 0 :(得分:1)

HttpWebResponse.ContentLength适合吗?

答案 1 :(得分:0)

为什么你不能尝试使用WebClient

E.g:

 WebClient wc = new WebClient();
 byte[] s = wc.UploadFile("string address", "string fileName");