Example #1
0
 public override void Delete()
 {
     try
     {
         m_ftp.RemoveDirectory(Name);
     }
     catch (FtpException ex)
     {
         throw new Exception("Unable to delete directory.", ex);
     }
 }