 |
CeGetFileSize ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
This function retrieves the size, in bytes, of the specified file. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
DWORD CeGetFileSize(
HANDLE hFile,
LPDWORD lpFileSizeHigh
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE LONG CeGetFileSize IN rapi;
INTEGER hFile,;
LONG lpFileSizeHigh
|
 |
 |
 |
| Parameters: |
 |
hFile
[in] Open handle of the file whose size is being returned.
lpFileSizeHigh
[out] Pointer to the variable where the high-order word of the file size is returned. |
 |
 |
| Return value: |
 |
| The low-order DWORD of the file size indicates success. If lpFileSizeHigh is non-NULL, the function puts the high-order DWORD of the file size into the variable pointed to by that parameter. If lpFileSizeHigh is NULL, 0xFFFFFFFF indicates failure. |
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2004-08-14 17:42:37 | | Modified: | 2004-08-14 17:44:20 | Visited in last 7 days: 16 |