Beispiel #1
0
 public async Task Mover(string arquivo, string destino)
 {
     try
     {
         await _cliente.MoveFileAsync(arquivo, destino, FtpRemoteExists.Overwrite);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }