###User Defined Function###
_WinAPI_GetFileInformationByHandle

###Description###
Retrieves file information for the specified file.

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


###Parameters###
@@ParamTable@@
$hFile
	Handle to the file that contains the information to be retrieved.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The array containing the following information:
	[0] - The file attributes (FILE_ATTRIBUTE_*).
	[1] - $tagFILETIME structure that specifies when a file or directory is created.
	[2] - $tagFILETIME structure that specifies the last time that a file is read from or written to.
	[3] - $tagFILETIME structure that specifies the last time that a file is written to.
	[4] - The serial number of the volume that contains a file.
	[5] - The file size.
	[6] - The number of links to this file.
	[7] - The unique identifier that is associated with a file.
Failure 	Sets the @error flag to non-zero, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information.
@@End@@


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ GetFileInformationByHandle


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