使用一個程式同時啟動多個程式(c#)

來源:互聯網
上載者:User
宿舍的肥仔每次開機就需要運行多個程式,他希望一個程式實現這些事情,所以寫了個程式,大家有什麼意見可以給我提出來,我會多加修改,謝謝,貼上源碼:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
namespace 懶人程式
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
            info.UseShellExecute = true;
            Process p;
            string path = @"C:\a.txt";
            FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
            StreamReader sr = new StreamReader(fs, Encoding.Default);
            string rl;
            while ((rl = sr.ReadLine()) != null)
            {
                info.FileName = rl;
                //richTextBox1.AppendText(rl + '\n');
                p = Process.Start(info);
            }
            sr.Close();
            fs.Close();
            Application.Exit();
        }
    }
}
使用說明:先安裝好軟體,20多K吧,運行前先在c盤根目錄建立一個a.txt,然後把需要同時啟動並執行程式詳細路徑,包括程式名和exe尾碼,一個程式佔一行,可以同時有多行,例如:
C:\Program Files\Internet Explorer\iexplore.exe
C:\Program Files\Internet Explorer\iexplore.exe
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.