Description
-
Holds SizeHi of the file or directory (higher 32 bits).
Property type
-
A Long value.
Syntax
-
object.SizeHi [= value]
The SizeHi Property syntax has these parts:
| object |
An expression
evaluating to an object of type DirItem. |
| value |
A Long value. |
Remarks
-
This property will contain higher 32 bits of the Size of the file
or folder. Usually it will be 0, but if size of remote file is
larger than 4.2GB it may contain value you should multiply with
MAX_UNSIGNED+1 (4294967296) and add to the value of
Size property.
-
-
Just a reminder - you must call
ListDir to get directory listing,
and then access files through Ftp.DirItems
property in order for this property to be available!
|