■ QueryFullProcessImageName API 함수를 선언하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System; using System.Runtime.InteropServices; using System.Text; #region 전체 프로세스 이미지명 질의하기 - QueryFullProcessImageName(processHandle, flag, filePathStringBuilder, filePathLength) /// <summary> /// 전체 프로세스 이미지명 질의하기 /// </summary> /// <param name="processHandle">프로세스 핸들</param> /// <param name="flag">플래그</param> /// <param name="filePathStringBuilder">파일 경로 문자열 빌더</param> /// <param name="filePathLength">파일 경로 길이</param> /// <returns>처리 결과</returns> [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true, BestFitMapping = false, ThrowOnUnmappableChar = true)] private static extern bool QueryFullProcessImageName ( IntPtr processHandle, uint flag, [Out, MarshalAs(UnmanagedType.LPTStr)] StringBuilder filePathStringBuilder, ref uint filePathLength ); #endregion |