码迷,mamicode.com
首页 > 系统相关 > 详细

使用进程名禁止程序运行多次

时间:2015-05-31 01:18:20      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

string moduleName = Process.GetCurrentProcess().MainModule.ModuleName;
string prcessName = System.IO.Path.GetFileNameWithoutExtension(moduleName);
Process[] processes = Process.GetProcessesByName(prcessName);
if (processes.Length>1)
{
    MessageBox.Show("程序已经运行!");
    Process.GetCurrentProcess().Kill();
}

使用进程名禁止程序运行多次

标签:

原文地址:http://www.cnblogs.com/xinzheng/p/4541310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!