Exemplo n.º 1
0
 public void MoveFolder(string folderPath, string destinationFolderPath)
 {
     using (var client =
                new FluentFTP.FtpClient(env.FTP_HOST, new NetworkCredential(env.FTP_USERNAME, env.FTP_PASSWORD)))
     {
         client.MoveDirectory(folderPath, destinationFolderPath);
     }
 }