Retrieves a volume GUID path for the volume that is associated with the specified volume mount point (drive letter, volume GUID path, or mounted folder).
Syntax
BOOL WINAPI GetVolumeNameForVolumeMountPoint(
__in LPCTSTR lpszVolumeMountPoint,
__out LPTSTR lpszVolumeName,
__in DWORD cchBufferLength
);
Parameters
- lpszVolumeMountPoint [in]
-
A pointer to a string that contains the path of a mounted folder (for example, Y:\MountX\) or a drive letter (for example, X:\). The string must end with a trailing backslash ('\').
- lpszVolumeName [out]
-
A pointer to a string that receives the volume GUID path. This path is of the form "\\?\Volume{GUID}\" where GUID is a GUID that identifies the volume. If there is more than one volume GUID path for the volume, only the first one in the mount manager's cache is returned.
- cchBufferLength [in]
-
The length of the output buffer, in TCHARs. A reasonable size for the buffer to accommodate the largest possible volume GUID path is 50 characters.
Return Value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call
GetLastError.
Remarks
Use
GetVolumeNameForVolumeMountPoint to obtain a volume GUID path for use with functions such as SetVolumeMountPoint and FindFirstVolumeMountPoint that require a volume GUID path as an input parameter. For more information about volume GUID paths, see
Naming A Volume.
Requirements
| Minimum supported client | Windows 2000 Professional |
| Minimum supported server | Windows 2000 Server |
| Header | WinBase.h (include Windows.h) |
| Library | Kernel32.lib |
| DLL | Kernel32.dll |
| Unicode and ANSI names | GetVolumeNameForVolumeMountPointW (Unicode) and GetVolumeNameForVolumeMountPointA (ANSI) |
See Also
- DeleteVolumeMountPoint
- GetVolumePathName
- SetVolumeMountPoint
- Volume Management Functions
- Mounted Folders
Send comments about this topic to Microsoft
Build date: 11/12/2009