CeGetFileSize (RAPI)

Send Feedback

This function retrieves the date and time that a file was created, last accessed, and last modified for a file on a remote Microsoft® Windows® CE–based device.

DWORD CeGetFileSize( 
  HANDLE hFile, 
  LPDWORD lpFileSizeHigh 
);

Parameters

  • hFile
    [in] Open handle of the file whose size is being returned. The handle must have been created with either GENERIC_READ or GENERIC_WRITE access to the file.
  • lpFileSizeHigh
    [out] Pointer to the variable where the high-order word of the file size is returned. This parameter can be NULL if the application does not require the high-order word.

Return Values

If the function succeeds, the return value is the low-order DWORD of the file size, and, if lpFileSizeHigh is non-NULL, the function puts the high-order doubleword of the file size into the variable pointed to by that parameter.

If the function fails and lpFileSizeHigh is NULL, the return value is INVALID_FILE_SIZE. To get extended error information, call CeGetLastError and CeRapiGetError.

If the function fails and lpFileSizeHigh is non-NULL, the return value is INVALID_FILE_SIZE and CeGetLastError will return a value other than NO_ERROR.

Requirements

Pocket PC: Pocket PC 2000 and later
Smartphone: Smartphone 2002 and later
OS Versions: Windows CE 3.0 and later
Header: Rapi.h
Library: Rapi.lib

See Also

Remote API Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.