Hi,
I need to create multiple copies of a file on the same FTPS server using ftp.PutFile(Stream sourceStream, string remotePath) method. However, when I run my application, every time I get Rebex.Net.FtpException as "Another operation is pending."
Here is my code.
using (var stream = ftp.GetDownloadStream(filePath))
{
ftp.PutFile(stream, filePath1);
}