private static void On(DestroyCommand command) { fileSystem.Destroy(command.LogicalName); WriteSuccessLine(string.Format("file {0} destroyed", command.LogicalName)); }
public override bool TryBuildCommand(string[] args, out object command) { var de = (command = new DestroyCommand()) as DestroyCommand; return RequireLogicalName(args, 0, out de.LogicalName); }