private void ExecuteMacroLocate() { List <string> macroInstructionParametersRaw = GetMacroInstructionParametersList(); foreach (string item in macroInstructionParametersRaw) { if (AFile.Exists(item)) { AFile.ShowInExplorer(item); } else { reportType = ReportType.ERROR; ReportInfo.Add("Startup item [" + item + "] is not exist."); } } }