 |
GetFileSizeEx ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The GetFileSizeEx function retrieves the size of the specified file. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL GetFileSizeEx(
HANDLE hFile,
PLARGE_INTEGER lpFileSize
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetFileSizeEx IN kernel32;
INTEGER hFile,;
STRING @ lpFileSize
|
 |
 |
 |
| Parameters: |
 |
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. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is nonzero. |
 |
 |
| My comment: |
 |
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. |
 |
 |
| Word Index links for the GetFileSizeEx : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-11-02 19:47:33 | | Modified: | 2004-11-02 19:50:34 | Visited in last 7 days: 248 |