温馨提示×

c# fluentftp怎样下载文件

c#
小樊
81
2024-11-21 10:38:18
栏目: 编程语言

要使用C# FluentFTP库下载文件,首先需要安装FluentFTP NuGet包。在Visual Studio中,右键单击项目 -> 选择“管理NuGet程序包” -> 搜索“FluentFTP” -> 安装。

接下来,可以使用以下代码示例下载文件:

using System;
using System.IO;
using FluentFTP;

namespace FtpDownloadExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // FTP服务器地址
            string ftpHost = "ftp.example.com";
            // FTP用户名
            string ftpUser = "username";
            // FTP密码
            string ftpPassword = "password";
            // 要下载的文件路径
            string remoteFilePath = "/path/to/remote/file.txt";
            // 本地文件路径
            string localFilePath = "C:/path/to/local/file.txt";

            // 连接到FTP服务器
            using (FtpClient client = new FtpClient(ftpHost, ftpUser, ftpPassword))
            {
                // 尝试连接
                client.Connect();
                Console.WriteLine("Connected to FTP server.");

                // 检查登录是否成功
                if (!client.Login())
                {
                    Console.WriteLine("Login failed.");
                    return;
                }

                // 开始下载文件
                using (Stream localStream = new FileStream(localFilePath, FileMode.Create))
                {
                    bool success = client.DownloadFile(remoteFilePath, localStream);
                    if (success)
                    {
                        Console.WriteLine("File downloaded successfully.");
                    }
                    else
                    {
                        Console.WriteLine("Failed to download file.");
                    }
                }
            }
        }
    }
}

请将ftpHostftpUserftpPasswordremoteFilePathlocalFilePath替换为实际的FTP服务器地址、用户名、密码、远程文件路径和本地文件路径。运行此代码后,文件将从FTP服务器下载到本地文件路径。

0