如何在C#中将文件夹上传到ftp服务器

问题描述:

将文件夹上传到ftp服务器c#



我尝试过:



我搜索了一些资源,但我找不到任何东西

Upload folder to ftp server in c#

What I have tried:

I searched some resources but i couldnt find anything

你没有上传文件夹。您可以一次上传文件夹中的文件。
You don't upload the folder. You upload the files in the folder one at a time.


简易解决方案:

- 使用FTP客户端,功能丰富。



硬解决方案:

- 建立自己的FTP客户端。
Easy solution:
- Use an FTP client, they are feature rich.

Hard solution:
- Build your own FTP client.