QUE CORPORATION - Using Filemaker pro X
| < Day Day Up > |
Get(FileSize)
Category: Get Syntax: Get ( FileSize ) Parameters: none 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 .
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. |
| < Day Day Up > |