#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (C) 2008-2014 ShareX Developers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Optionally you can also view the license at . */ #endregion License Information (GPL v3) using System; using System.Diagnostics; using System.IO; namespace HelpersLib { public class ExternalProgram { public bool IsActive { get; set; } public string Name { get; set; } public string Path { get; set; } public string Args { get; set; } public ExternalProgram() { IsActive = false; Args = "%filepath%"; } public ExternalProgram(string name, string path) : this() { Name = name; Path = path; } public ExternalProgram(string name, string path, string args) : this(name, path) { if (!string.IsNullOrEmpty(args)) { Args += " " + args; } } public void Run(string filePath) { if (!string.IsNullOrEmpty(Path) && File.Exists(Path)) { filePath = '"' + filePath.Trim('"') + '"'; try { using (Process process = new Process()) { ProcessStartInfo psi = new ProcessStartInfo(Path); if (string.IsNullOrEmpty(Args)) { psi.Arguments = filePath; } else { psi.Arguments = Args.Replace("%filepath%", filePath); } process.StartInfo = psi; DebugHelper.WriteLine(string.Format("Running {0} with arguments: {1}", Path, psi.Arguments)); process.Start(); process.WaitForExit(); } } catch (Exception e) { DebugHelper.WriteException(e); } } } } }