Group: File System - Library: kernel32
Using File Mapping for enumerating files opened by Visual FoxPro
BOOL GetFileSizeEx(
HANDLE hFile,
PLARGE_INTEGER lpFileSize
);
DECLARE INTEGER GetFileSizeEx IN kernel32;
INTEGER hFile,;
STRING @ lpFileSize
hFile [in] Handle to the file whose size is to be returned.
lpFileSize [out] Pointer to a LARGE_INTEGER structure that receives the file size.
If the function succeeds, the return value is nonzero.
Client: Requires Windows XP or Windows 2000 Professional.
Server: Requires Windows Server 2003 or Windows 2000 Server.
The LARGE_INTEGER structure is used to represent a 64-bit signed integer value.