UINT GetDriveTypeEx(LPCTSTR lpszFileName)
{
TCHAR tszVolumePathName[MAX_PATH];
UINT unRet = DRIVE_UNKNOWN;
if (GetVolumePathName(lpszFileName, tszVolumePathName, MAX_PATH))
{
unRet = GetDriveType(tszVolumePathName);
}
return unRet;
}
'프로그래밍 팁 > etc' 카테고리의 다른 글
체크박스 WM_CTLCOLOR 사용 방법 (0) | 2013.05.31 |
---|---|
MessageBoxTimeout API(문서화 되지않은 기능) (1) | 2012.02.01 |
CreateCompatibleBitmap 주의사항 (2) | 2011.12.03 |
다이얼로그 구멍내기 (0) | 2011.11.25 |
비스타에서 권한무시 메세지 전송방법 (0) | 2011.10.12 |