עזרה בכתיבת סקריפט
-
@aknvtchtk
בבקשה הנה הקובץ
openExeLoop.exe
אתה צריך שבתיקייה יהיה קובץ בשם file.txt
ושבתוכו יהיה הנתיב לקובץ שאתה רוצה להפעיל
דוגמא לקובץ (שים לב שבהורדת הקובץ השם שלו משתנה אז תשנה אותו בחזרה לfile.txt)
file.txtוהנה הקוד למי שמתעניין
using System; using System.Collections.Generic; using System.Diagnostics; using System.Net.Mime; using System.Text; namespace openExeLoop { class Program { static void Main(string[] args) { string filename = ""; try { filename= System.IO.File.ReadAllText("file.txt"); Console.WriteLine("start file: " + filename); } catch (Exception e) { Console.WriteLine(e); Console.ReadLine(); Environment.Exit(0); // throw; } Process process = new Process(); // Configure the process using the StartInfo properties. process.StartInfo.FileName = @filename; process.StartInfo.Arguments = ""; process.StartInfo.WindowStyle = ProcessWindowStyle.Minimized; while (true) { try { Console.WriteLine("start on " + DateTime.Now ); process.Start(); } catch (Exception e) { Console.WriteLine(e); //throw; } process.WaitForExit();// Waits here for the process to exit. Console.WriteLine("end on " + DateTime.Now + ", start while 15 sec."); System.Threading.Thread.Sleep(15 * 1000); } } } }