Difference between revisions of "FileSize"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function FileSize(FileNum: Integer): LongInt; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Returns the ...") |
(→Description) |
||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Returns the file size of the file open in a stream associated with the index '''FileNum''' in the file stream resource manager. | + | 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== | ==Example== |
Revision as of 11:12, 1 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.