C #을 사용하여 FTP에 파일 업로드


112

C #으로 FTP 서버에 파일을 업로드하려고합니다. 파일이 업로드되지만 바이트는 0입니다.

private void button2_Click(object sender, EventArgs e)
{
    var dirPath = @"C:/Documents and Settings/sander.GD/Bureaublad/test/";

    ftp ftpClient = new ftp("ftp://example.com/", "username", "password");

    string[] files = Directory.GetFiles(dirPath,"*.*");

    var uploadPath = "/httpdocs/album";

    foreach (string file in files)
    {
        ftpClient.createDirectory("/test");

        ftpClient.upload(uploadPath + "/" + Path.GetFileName(file), file);
    }

    if (string.IsNullOrEmpty(txtnaam.Text))
    {
        MessageBox.Show("Gelieve uw naam in te geven !");
    }
}

18
거의 2 년이 지난 후에도 원래 FTP 자격 증명이 여전히 작동하는 이유는 무엇입니까?
FreeAsInBeer


당신은 morever이 ... 당신이 FTP 업로드 사용하고있는 API 분명하지 않다 ... @Frederic가 링크 된 질문에서 언급 한 것을 시도하고 다시 얻을 수
deostroll

답변:


272

기존 답변은 유효하지만 이미 FTP 업로드를 깔끔하게 구현 WebRequest하면서 바퀴를 다시 발명하고 하위 수준 유형으로 귀찮게하는 이유는 무엇입니까?WebClient

using (var client = new WebClient())
{
    client.Credentials = new NetworkCredential(ftpUsername, ftpPassword);
    client.UploadFile("ftp://host/path.zip", WebRequestMethods.Ftp.UploadFile, localFile);
}

39
단 1 센트 : WebRequestMethods.Ftp.UploadFile의 매직 문자열 "STOR"를 대체 할 수 있습니다.
클릭 Ok

불행히도 WebClient를 사용하여 파일을 업로드 할 새 디렉터리를 만드는 방법이없는 것 같습니다.
danludwig

1
PSA : 웹 요청은 더 이상 권장되지 않습니다. 이제 공식 대안이되었습니다
Pacharrin

안녕하세요 UploadFile 메소드의 path.zip은 무엇을 의미합니까? 호스트 이름 뒤에 포함 할 파일 이름이 필요합니까? 보낼 txt 파일이 있는데 파일 이름과 해당 파일의 경로가 localFile에 언급되어 있다고 생각했습니다.
Skanda

43
public void UploadFtpFile(string folderName, string fileName)
{

    FtpWebRequest request;

    string folderName; 
    string fileName;
    string absoluteFileName = Path.GetFileName(fileName);

    request = WebRequest.Create(new Uri(string.Format(@"ftp://{0}/{1}/{2}", "127.0.0.1", folderName, absoluteFileName))) as FtpWebRequest;
    request.Method = WebRequestMethods.Ftp.UploadFile;
    request.UseBinary = 1;
    request.UsePassive = 1;
    request.KeepAlive = 1;
    request.Credentials =  new NetworkCredential(user, pass);
    request.ConnectionGroupName = "group"; 

    using (FileStream fs = File.OpenRead(fileName))
    {
        byte[] buffer = new byte[fs.Length];
        fs.Read(buffer, 0, buffer.Length);
        fs.Close();
        Stream requestStream = request.GetRequestStream();
        requestStream.Write(buffer, 0, buffer.Length);
        requestStream.Flush();
        requestStream.Close();
    }
}

사용하는 방법

UploadFtpFile("testFolder", "E:\\filesToUpload\\test.img");

당신의 foreach에서 이것을 사용하십시오

폴더를 한 번만 생성하면됩니다.

폴더를 만들려면

request = WebRequest.Create(new Uri(string.Format(@"ftp://{0}/{1}/", "127.0.0.1", "testFolder"))) as FtpWebRequest;
request.Method = WebRequestMethods.Ftp.MakeDirectory;
FtpWebResponse ftpResponse = (FtpWebResponse)request.GetResponse();

3
전화를받지 못했습니다 request.GetResponse(). 그것 없이는 업로드가 일부 서버에서 (올바르게) 작동하지 않습니다. 방법 : FTP를 사용하여 파일 업로드를 참조하십시오 .
마틴 Prikryl

나는 예외를 조용히 삼키기 위해 -1을 유혹한다. 유해한 try-catch-block을 제거해 주시겠습니까?
Heinzi

33

가장 쉬운 방법

.NET 프레임 워크를 사용하여 FTP 서버에 파일을 업로드하는 가장 간단한 방법은 WebClient.UploadFilemethod를 사용 하는 것입니다 .

WebClient client = new WebClient();
client.Credentials = new NetworkCredential("username", "password");
client.UploadFile("ftp://ftp.example.com/remote/path/file.zip", @"C:\local\path\file.zip");

고급 옵션

더 큰 제어가 필요 WebClient하지만 TLS / SSL 암호화 , ASCII 모드, 활성 모드 등과 같이 제공되지 않는 경우 FtpWebRequest. 쉬운 방법은 다음을 FileStream사용하여 FTP 스트림에 복사하는 것입니다 Stream.CopyTo.

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 fileStream = File.OpenRead(@"C:\local\path\file.zip"))
using (Stream ftpStream = request.GetRequestStream())
{
    fileStream.CopyTo(ftpStream);
}

진행 모니터링

업로드 진행 상황을 모니터링해야하는 경우 콘텐츠를 청크별로 직접 복사해야합니다.

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 fileStream = File.OpenRead(@"C:\local\path\file.zip"))
using (Stream ftpStream = request.GetRequestStream())
{
    byte[] buffer = new byte[10240];
    int read;
    while ((read = fileStream.Read(buffer, 0, buffer.Length)) > 0)
    {
        ftpStream.Write(buffer, 0, read);
        Console.WriteLine("Uploaded {0} bytes", fileStream.Position);
    } 
}

GUI 진행률 (WinForms ProgressBar)은 C # 예제를 참조하십시오.
FtpWebRequest를 사용하여 업로드 진행률 표시 줄을 표시하는 방법


폴더 업로드

폴더에서 모든 파일을 업로드하려면 WebClient를 사용하여 FTP 서버에 파일 디렉토리 업로드를 참조하십시오.
.

재귀 업로드의 경우 C #에서 FTP 서버에 재귀 업로드를 참조
하세요.


10

다음은 나를 위해 작동합니다.

public virtual void Send(string fileName, byte[] file)
{
    ByteArrayToFile(fileName, file);

    var request = (FtpWebRequest) WebRequest.Create(new Uri(ServerUrl + fileName));

    request.Method = WebRequestMethods.Ftp.UploadFile;
    request.UsePassive = false;
    request.Credentials = new NetworkCredential(UserName, Password);
    request.ContentLength = file.Length;

    var requestStream = request.GetRequestStream();
    requestStream.Write(file, 0, file.Length);
    requestStream.Close();

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

    if (response != null)
        response.Close();
}

파일 이름 일 뿐이므로 코드에서 파일 매개 변수를 읽을 수 없습니다.

다음을 사용하십시오.

byte[] bytes = File.ReadAllBytes(dir + file);

Send메서드에 전달할 수 있도록 파일을 가져옵니다 .


안녕하세요, 파일이 들어있는 폴더가 있습니다. FTP 서버에 어떻게 업로드 할 수 있습니까? 이 코드가 어떻게 작동하는지 정확히 모르겠습니까?
webvision 2013 년

foreach 루프에서 적절한 입력으로이 메서드를 호출합니다.
nRk 2013 년

8
public static void UploadFileToFtp(string url, string filePath, string username, string password)
{
    var fileName = Path.GetFileName(filePath);
    var request = (FtpWebRequest)WebRequest.Create(url + fileName);

    request.Method = WebRequestMethods.Ftp.UploadFile;
    request.Credentials = new NetworkCredential(username, password);
    request.UsePassive = true;
    request.UseBinary = true;
    request.KeepAlive = false;

    using (var fileStream = File.OpenRead(filePath))
    {
        using (var requestStream = request.GetRequestStream())
        {
            fileStream.CopyTo(requestStream);
            requestStream.Close();
        }
    }

    var response = (FtpWebResponse)request.GetResponse();
    Console.WriteLine("Upload done: {0}", response.StatusDescription);
    response.Close();
}

KeepAlive = false로 설정하는 이유는 무엇입니까? requestStream.Close ()가 필수입니까? 내부에서 requestStream을 사용하므로 자체적으로 스트림을 닫을 것이라고 생각합니다.
Kate

2

첫 번째 예에서는 다음으로 변경해야합니다.

requestStream.Flush();
requestStream.Close();

먼저 플러시하고 그 후 닫습니다.


1

이것은 나를 위해 작동합니다.이 방법은 파일을 네트워크 내의 위치로 SFTP합니다. SSH.NET.2013.4.7 라이브러리를 사용하며 무료로 다운로드 할 수 있습니다.

    //Secure FTP
    public void SecureFTPUploadFile(string destinationHost,int port,string username,string password,string source,string destination)

    {
        ConnectionInfo ConnNfo = new ConnectionInfo(destinationHost, port, username, new PasswordAuthenticationMethod(username, password));

        var temp = destination.Split('/');
        string destinationFileName = temp[temp.Count() - 1];
        string parentDirectory = destination.Remove(destination.Length - (destinationFileName.Length + 1), destinationFileName.Length + 1);


        using (var sshclient = new SshClient(ConnNfo))
        {
            sshclient.Connect();
            using (var cmd = sshclient.CreateCommand("mkdir -p " + parentDirectory + " && chmod +rw " + parentDirectory))
            {
                cmd.Execute();
            }
            sshclient.Disconnect();
        }


        using (var sftp = new SftpClient(ConnNfo))
        {
            sftp.Connect();
            sftp.ChangeDirectory(parentDirectory);
            using (var uplfileStream = System.IO.File.OpenRead(source))
            {
                sftp.UploadFile(uplfileStream, destinationFileName, true);
            }
            sftp.Disconnect();
        }
    }

이 대답은 내 sftp에 대한 유일한 해결책 인 것 같습니다. 테스트를 기다리고 있습니다.
Olorunfemi Ajibulu

1

게시 날짜 : 2018 년 6 월 26 일

https://docs.microsoft.com/en-us/dotnet/framework/network-programming/how-to-upload-files-with-ftp

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.
        byte[] fileContents;
        using (StreamReader sourceStream = new StreamReader("testfile.txt"))
        {
            fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
        }

        request.ContentLength = fileContents.Length;

        using (Stream requestStream = request.GetRequestStream())
        {
            requestStream.Write(fileContents, 0, fileContents.Length);
        }

        using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
        {
            Console.WriteLine($"Upload File Complete, status 
{response.StatusDescription}");
        }
    }
}
}

0

나는 그것을 관찰했다-

  1. FtpwebRequest가 없습니다.
  2. 대상이 FTP이므로 NetworkCredential이 필요합니다.

이와 같이 작동하는 메서드를 준비했습니다. ftpurl 변수의 값을 TargetDestinationPath 매개 변수로 바꿀 수 있습니다. winforms 응용 프로그램에서이 방법을 테스트했습니다.

private void UploadProfileImage(string TargetFileName, string TargetDestinationPath, string FiletoUpload)
        {
            //Get the Image Destination path
            string imageName = TargetFileName; //you can comment this
            string imgPath = TargetDestinationPath; 

            string ftpurl = "ftp://downloads.abc.com/downloads.abc.com/MobileApps/SystemImages/ProfileImages/" + imgPath;
            string ftpusername = krayknot_DAL.clsGlobal.FTPUsername;
            string ftppassword = krayknot_DAL.clsGlobal.FTPPassword;
            string fileurl = FiletoUpload;

            FtpWebRequest ftpClient = (FtpWebRequest)FtpWebRequest.Create(ftpurl);
            ftpClient.Credentials = new System.Net.NetworkCredential(ftpusername, ftppassword);
            ftpClient.Method = System.Net.WebRequestMethods.Ftp.UploadFile;
            ftpClient.UseBinary = true;
            ftpClient.KeepAlive = true;
            System.IO.FileInfo fi = new System.IO.FileInfo(fileurl);
            ftpClient.ContentLength = fi.Length;
            byte[] buffer = new byte[4097];
            int bytes = 0;
            int total_bytes = (int)fi.Length;
            System.IO.FileStream fs = fi.OpenRead();
            System.IO.Stream rs = ftpClient.GetRequestStream();
            while (total_bytes > 0)
            {
                bytes = fs.Read(buffer, 0, buffer.Length);
                rs.Write(buffer, 0, bytes);
                total_bytes = total_bytes - bytes;
            }
            //fs.Flush();
            fs.Close();
            rs.Close();
            FtpWebResponse uploadResponse = (FtpWebResponse)ftpClient.GetResponse();
            string value = uploadResponse.StatusDescription;
            uploadResponse.Close();
        }

문제가 발생하면 알려주세요. 도움이 될만한 링크가 하나 더 있습니다.

https://msdn.microsoft.com/en-us/library/ms229715(v=vs.110).aspx

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.