/// <summary> /// Deletes a file on the FTP server /// </summary> /// <param name="path">The path of the file to delete (typically /// relative to the current directory)</param> public override void DeleteFile(string path) { path = CombinePath(m_path, path); ValidateFTPCommand(WinInet.FtpDeleteFile(m_hFtp, path)); }