public string Execute(string[] args, out bool result, TcpClient client = null) { return(m_modal.DeleteFile(args[0], out result)); }
public string Execute(string[] args, out bool result) { // args[0] will contain full path of file created in the original dir return(m_modal.DeleteFile(args[0], out result)); // The String Will Return the New Path if result = true, and will return the error message }