Reflection 클래스를 이용하여 얻는 방법을 찾았습니다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//
using System.Reflection;
using System.IO;
namespace ConsoleUnitTest
{
class Program
{
static void Main(string[] args)
{
//전체 경로
Console.WriteLine(Assembly.GetEntryAssembly().Location);
// 파일명 만 얻어오기
Console.WriteLine(Path.GetFileName(Assembly.GetEntryAssembly().Location));
}
}
}
'C# > WindowsForm' 카테고리의 다른 글
C# 사용자 정의 메시지 박스 윈폼으로 만들어 보기 -0- (0) | 2016.03.29 |
---|---|
C# Image TIFF 장수 확인 (페이지 카운트) (0) | 2016.03.15 |
C# Winform EXE 실행시 관리자 모드로 실행 (0) | 2016.03.07 |
듀얼모니터 사용시 서브 모니터에 폼 크기 최대화 실행 방안 (0) | 2016.02.16 |
C# Windows Form 타이틀 바 숨기기 (0) | 2016.02.16 |