Difference between revisions of "FileSize"
From SCAR Divi Manual
(→Description) |
(→Example) |
||
| Line 27: | Line 27: | ||
end. | end. | ||
</source> | </source> | ||
| + | |||
| + | Output: | ||
| + | 12 | ||
==See Also== | ==See Also== | ||
Revision as of 14:35, 3 July 2011
Definition
function FileSize(FileNum: Integer): LongInt;
Availability
SCAR Divi 3.00 > Current
Description
Returns the file size of the file open in a stream associated with the index FileNum in the file stream resource manager. Getting the file size of a file without opening it is possible with GetFileSize.
Example
var f: Integer; begin f := Rewritefile(LogsPath + 'Test.txt', False); WriteFileString(f, 'Hello World!'); CloseFile(f); f := OpenFile(LogsPath + 'Test.txt', False); WriteLn(FileSize(f)); CloseFile(f); DeleteFile(LogsPath + 'Test.txt'); end.
Output:
12