Ftp to F #

I need to write a program in F # that should push files to an FTP server. Is there a library that I can use? I could not find anything on the Internet. Can someone point me in the right direction? If possible, some sample code will be very helpful.

+3
source share
2 answers

System.Net.WebRequest.Createworks well when you give it a url ftp://.

To access FTP-specific functions (for example, upload files), hover WebRequestover FtpWebRequest.

+9
source

FtpWebRequest must do something.

+4
source

Source: https://habr.com/ru/post/1758430/


All Articles