gpt4 book ai didi

Windows 10 通用应用程序中的 C# Ftp 上传?

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:35 25 4
gpt4 key购买 nike

我想使用 ftp 从 Windows 10 应用程序上传文件,我尝试了以下代码。

    using System;
using System.IO;
using System.Net;
using System.Text;

namespace Examples.System.Net
{
public class WebRequestGetExample
{
public static void Main ()
{
// Get the object used to communicate with the server.
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.UploadFile;

// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");

// Copy the contents of the file to the request stream.
StreamReader sourceStream = new StreamReader("testfile.txt");
byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
sourceStream.Close();
request.ContentLength = fileContents.Length;

Stream requestStream = request.GetRequestStream();
requestStream.Write(fileContents, 0, fileContents.Length);
requestStream.Close();

FtpWebResponse response = (FtpWebResponse)request.GetResponse();

Console.WriteLine("Upload File Complete, status {0}", response.StatusDescription);

response.Close();
}
}
}
}

但 visual studio 找不到 namespace FtpWebRequestWebRequestMethods。我尝试使用来自 link 的 backgroundtransfer api 的另一种方法但它表示 WinRT 信息:'uri':上传内容仅支持 'http' 和 'https' 方案。 不支持 ftp。

那么有什么可以显示进度条和速度的解决方案吗?

最佳答案

FtpWebRequest 类不是 UWP 应用程序商店配置文件的一部分,并且不支持通过 BackgroundTransfer API 进行 FTP 上传(如您所确定的)。这让您可以通过套接字实现自己的 FTP 协议(protocol)。参见 FTP Endeavor in WinRT用于解释和示例链接。

关于Windows 10 通用应用程序中的 C# Ftp 上传?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32380715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com