Get(FileSize)
Category: Get
Syntax: Get ( FileSize ) |
Parameters: None
Data type returned: Number
Description:
Returns the size of the current file in bytes.
Examples:
If the current file size is 1,404,928 bytes Get (FileSize) returns 1404928.
Function |
Results |
---|---|
Round (Get (FileSize) / 1024; 0) |
Returns 1372, the file size in KB. |
Round (Get (FileSize) / 1048576; 2) |
Returns 1.34, the file size in MB. |