PathParseIconLocationW 함수(shlwapi.h)
파일 위치 및 아이콘 인덱스가 포함된 파일 위치 문자열을 구문 분석하고 별도의 값을 반환합니다.
구문
int PathParseIconLocationW(
[in, out] LPWSTR pszIconFile
);
매개 변수
[in, out] pszIconFile
형식: LPTSTR
파일 위치 문자열을 포함하는 길이 MAX_PATH null로 끝나는 문자열에 대한 포인터입니다. "path,iconindex" 형식이어야 합니다. 함수가 반환되면 pszIconFile 은 파일의 경로를 가리킵니다.
반환 값
형식: int
유효한 아이콘 인덱스 값을 반환합니다.
설명
이 함수는 SHGetValue 를 통해 레지스트리에서 검색된 DefaultIcon 값을 가져와서 경로에서 아이콘 인덱스 분리에 유용합니다.
예제
#include <windows.h>
#include <iostream.h>
#include "Shlwapi.h"
void main(void)
{
// Path to parse for file and icon index.
char buffer_1[ ] = "C:\\TEST\\sample.txt,3";
char *lpStr1;
lpStr1 = buffer_1;
// Return value from "PathParseIconLocation".
int retval;
// Search a path to parse for file and icon index.
retval = PathParseIconLocation(lpStr1);
cout << "The path to parse for file and icon index is : " << lpStr1 << endl;
cout << "PathParseIconLocation returns the icon index of: " << retval << endl;
}
OUTPUT:
==========
The path to parse for file and icon index is : C:\TEST\sample.txt
PathParseIconLocation returns the icon index of: 3
참고
shlwapi.h 헤더는 UNICODE 전처리기 상수의 정의에 따라 이 함수의 ANSI 또는 유니코드 버전을 자동으로 선택하는 별칭으로 PathParseIconLocation을 정의합니다. 인코딩 중립 별칭을 인코딩 중립이 아닌 코드와 혼합하면 컴파일 또는 런타임 오류가 발생하는 불일치가 발생할 수 있습니다. 자세한 내용은 함수 프로토타입에 대한 규칙을 참조하세요.
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 2000 Professional, Windows XP [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | shlwapi.h |
라이브러리 | Shlwapi.lib |
DLL | Shlwapi.dll(버전 4.71 이상) |