מציאת קובץ exe עם נתיב לא ידוע C#
-
איך אפשר למצוא קובץ exe שלא יודעים את הנתיב שלו?
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using System.Diagnostics; using System.IO; namespace RunPHPScript { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); App(); } static void App() { OpenFileDialog openDlg = new OpenFileDialog(); openDlg.Filter = "PHP Script Files (*.php) | *.php"; openDlg.Title = "Open PHP Script..."; openDlg.ShowDialog(); Process.Start(Path.GetFullPath(@"/php/php.exe"), openDlg.FileName); } } }
פורסם במקור בפורום CODE613 ב06/12/2016 17:27 (+02:00)