郑重声明:此文为本人原创,旨在为参加全国高校GIS技能大赛的同学们以及初学MapGIS的朋友提供一些参考,若有疑问可留言提问,转载请注明出处!
如何利用C#去打开一个已经存在的exe 程序呢?此处使用的方法是另起一个线程来打开一个.exe程序,不多说,直接上代码:
此处以调用MapGIS存储服务管理程序为例:
//调用EXE程序,打开存储服务管理器
Process myProcess = new Process();
string fileName = Directory.GetParent("H:\TaskSpace\\MapGIS\\DataStoreService\\ServiceManagement.exe"; ///此处,填写上你要调用的.exe程序的完整路径即可。
if (!File.Exists(fileName))
{
MessageBox.Show("没有发现存储服务管理程序!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);硬盘上没有找到,那么给出提示。
return;
}
ProcessStartInfo myProcessStartInfo = new ProcessStartInfo(fileName);
myProcess.StartInfo = myProcessStartInfo;
myProcess.Start();