.Net - 如何将流写入指定位置的文件
我正在尝试将 zip 文件从 FTP 位置下载到服务器硬盘中的目录。
我从 FTP 位置获取作为 ReponseStream 的 zip 文件。
我如何将此 zip 文件写入指定目录。我不能说这个文件的大小是多少。
提前致谢。
I am trying to download a zip file from an FTP location to a directory in the server harddisk.
I am getting the zip file as a ReponseStream from the FTP location.
How can i write this zip file to a specified directory. I can't say what the size of this file will be.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以只使用
WebClient.DownloadFile("remote file", "local file")
吗?简单多了。Can you just use
WebClient.DownloadFile("remote file", "local file")
? It's so much simpler.