Overload | Description |
---|---|
SendFile(String) | Sends the specified file to the FTP server's current working folder and stores it using the same filename. |
SendFile(String,Boolean) | Sends the specified file to the FTP server's current working folder using the same filename and indicating if it should append itself to the remote file if it already exists. |
SendFile(String,String) | Sends the specified file to the FTP server's current working folder and stores it using the specified filename. |
SendFile(String,String,Boolean) | Sends the specified file to the FTP server's current working folder, indicating if it should append itself to the remote file if it already exists, and stores it using the specified filename. |
SendFile(Stream,String,Boolean) | Sends the data from the specified System.IO.Stream to the FTP server's current working folder, indicating if it should append itself to the remote file if it already exists, and stores it using the specified filename. |
SendFile(Stream,String) | Sends the data from the specified System.IO.Stream to the FTP server's current working folder. |