Upload file uploaded via HTTP to ASP.NET further to FTP server in C#(将通过 HTTP 上传到 ASP.NET 的文件上传到 C# 中的 FTP 服务器)
问题描述
上传表格:
<form asp-action="Upload" asp-controller="Uploads" enctype="multipart/form-data">
<input type="file" name="file" maxlength="64" />
<button type="submit">Upload</button>
控制器/文件上传:
public void Upload(IFormFile file){
using (WebClient client = new WebClient())
{
client.Credentials = new NetworkCredential("xxxx", "xxxx");
client.UploadFile("ftp://xxxx.xxxx.net.uk/web/wwwroot/images/", "STOR", file.FileName);
}
}
问题:
出现错误找不到文件 xxxx".我知道问题是它试图找到文件,因为它是 FTP 服务器上的 "C:path-to-vs-filesexamplePhoto.jpg" ,这显然不存在.我一直在这里查看许多问题/答案,我认为我需要某种 FileStream 读/写代码.但我目前还没有完全理解这个过程.
Getting error "Could not find file xxxx". I understand the issue is that it's trying to find the file as it is "C:path-to-vs-filesexamplePhoto.jpg" on the FTP server, which obviously doesn't exist. I've been looking at many questions/answers on here and I think I need some kind of FileStream read/write cod. But I'm not fully understanding the process at the moment.
推荐答案
使用 IFormFile.CopyTo 或 IFormFile.OpenReadStream 来访问上传文件的内容.
Use IFormFile.CopyTo or IFormFile.OpenReadStream to access the contents of the uploaded file.
虽然 WebClient 无法使用 Stream 接口.所以你最好使用 FtpWebRequest一个>:
Though WebClient cannot work with Stream interface. So you better use FtpWebRequest:
public void Upload(IFormFile file)
{
FtpWebRequest request =
(FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/remote/path/file.zip");
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.UploadFile;
using (Stream ftpStream = request.GetRequestStream())
{
file.CopyTo(ftpStream);
}
}
这篇关于将通过 HTTP 上传到 ASP.NET 的文件上传到 C# 中的 FTP 服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将通过 HTTP 上传到 ASP.NET 的文件上传到 C# 中的
基础教程推荐
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
