###User Defined Function###
_WinAPI_GetVolumeInformationByHandle

###Description###
Retrieves information about the file system and volume associated with the specified file.

###Syntax###
#include <WinAPIFiles.au3>
_WinAPI_GetVolumeInformationByHandle ( $hFile )


###Parameters###
@@ParamTable@@
$hFile
	A handle to the file.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The array that contains the following information:
	[0] - The name of a volume.
	[2] - The serial number of a volume.
	[1] - The maximum length, in TCHARs, of a file name component that a file system supports.
	[3] - The flags associated with the file system ($FILE_*).
	[4] - The name of the file system, for example, "FAT", "NTFS", etc.
Failure 	Sets the @error flag to non-zero, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information.
@@End@@


###Remarks###
This function requires <strong>Windows Vista or later</strong>.


###Related###


###See Also###
@@MsdnLink@@ GetVolumeInformationByHandleW


###Example###
@@IncludeExample@@
