c# 下载并保存文件在程序目录

Posted ghelement

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 下载并保存文件在程序目录相关的知识,希望对你有一定的参考价值。

public void HttpDownloadFile(string url)
        {
            string strFileName = url.Substring(url.LastIndexOf("/")+1);
            // 设置参数
            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
            //发送请求并获取相应回应数据
            HttpWebResponse response = request.GetResponse() as HttpWebResponse;
            //直到request.GetResponse()程序才开始向目标网页发送Post请求
            Stream responseStream = response.GetResponseStream();
            //创建本地文件写入流
            //string uploadPath = "/DownFile"; 
            string uploadPath = Environment.CurrentDirectory;
            uploadPath = uploadPath.Substring(0, uploadPath.IndexOf("bin")) + "DownFile\\" + strFileName;
            Stream stream = new FileStream(uploadPath, FileMode.Create);
            byte[] bArr = new byte[stream.Length];
            int size = responseStream.Read(bArr, 0, (int)bArr.Length);
            while (size > 0)
            {
                stream.Write(bArr, 0, size);
                size = responseStream.Read(bArr, 0, (int)bArr.Length);
            }
            stream.Close();
            responseStream.Close();
   //return path;
        }

 

以上是关于c# 下载并保存文件在程序目录的主要内容,如果未能解决你的问题,请参考以下文章

一个C#的图片浏览器示例小程序(可源代码下载)

一个C#的图片浏览器示例小程序(可源代码下载)

是否可以动态编译和执行 C# 代码片段?

下载PDF文件并保存在文档目录中

#VSCode保存插件配置并使用 gist 管理代码片段

C# Winform 每 10 秒从 API 获取数据并保存在文件夹中