반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- f035d
- onsenui
- error
- Android
- electron-nuxt
- v-select
- bucket max-key
- CSS
- NUXT
- sequelize
- vuejs
- JavaScript
- nodejs
- vuetifyjs
- MySQL
- Vuetify
- c#
- naver storage
- v-text-field height
- naver storage bucket error
- xlsx
- bucket cors
- 동일 프로그램
- 동일 프로세스
- Vue
- kotlin
- onsen-ui
- 프로세스 방지
- sort
- Electron
Archives
- Today
- Total
앙큼한 개발기록
[c#] 프로세스 (프로그램) 중복 실행 본문
릴리즈모드로 프로그램을 디버깅 하면서 실제 프로그램과 포트가 충돌나는 경우가 생겼다.
동일한 프로그램이 여러개 뜰수 있다는 생각을 못하다가
이번에 동일 프로그램에 대한 프로세스를 띄우지 못하게 하는 방법에 대해 정리 해보고자 한다.
using System.Diagnostics;
namespace WinFormsApp1
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
string name = Process.GetCurrentProcess().ProcessName;
if (IsExistProcess(name))
{
MessageBox.Show("is already running");
}
else
{
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
static bool IsExistProcess(string processName)
{
Process[] process = Process.GetProcesses();
int count = 0;
foreach (var p in process)
{
if (p.ProcessName == processName)
count++;
if (count > 1)
return true;
}
return false;
}
static bool IsExistMutex(string processName)
{
bool result;
Mutex mutex = new Mutex(true, processName, out result);
return !result;
}
}
}
끝.
'개발' 카테고리의 다른 글
[aws] bucket max-keys=0 오류 (0) | 2023.08.16 |
---|---|
[C#] tray icon 설정 방법 (winForm NotifyIcon) (0) | 2023.05.25 |
[C#] 프로그램 빌드시 오류 없이 실패 (빌드 실패) (0) | 2023.05.24 |
[C#] ini 파일 kernal로 읽고 쓰기 (0) | 2023.05.23 |
[c#] 프로그램 시작시 관리자권한 (0) | 2023.05.23 |
Comments