Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 824 Bytes

FindVolumeClose.md

File metadata and controls

42 lines (28 loc) · 824 Bytes

Home

Function name : FindVolumeClose

Group: File System - Library: kernel32


Closes the specified volume search handle created with the FindFirstVolume and FindNextVolume call.


Code examples:

Enumerating Volumes and Volume Mounting Points (NTFS)

Declaration:

BOOL FindVolumeClose(
	HANDLE hFindVolume
);  

FoxPro declaration:

DECLARE INTEGER FindVolumeClose IN kernel32;
	INTEGER hFindVolume
  

Parameters:

hFindVolume [in] Volume search handle to close. This handle must have been previously opened by the FindFirstVolume function.


Return value:

If the function succeeds, the return value is nonzero.