.
.
public static extern uint CeGetFileSize(
.
function info on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceactsy/html/cerefCeGetFileSizeRAPI.asp
.
.
Private Sub GetFileSize(ByVal strPath As String)
.
The GetFileSizeEx API
11/6/2009 6:10:27 AM - -219.111.155.239
.
static extern bool GetFileSizeEx(IntPtr hFile, out long lpFileSize);
.
Public Shared Function GetFileSizeEx( _
.
bool result = GetFileSizeEx(handle, out fileSize);
.
.
The GetFileSizeEx API
11/6/2009 6:10:27 AM - -219.111.155.239
.
static extern bool GetFileSizeEx(IntPtr hFile, out long lpFileSize);
.
Public Shared Function GetFileSizeEx( _
.
bool result = GetFileSizeEx(handle, out fileSize);
.