|
FileIsEOF
DescriptionDetermines
whether ColdFusion has reached the end of an on-disk or in-memory file
while reading it.
ReturnsYes,
if the end of the file has been reached; No, otherwise.
Function syntaxFileIsEOF(fileObj)
HistoryColdFusion
8: Added this function.
Parameters
Parameter
|
Description
|
fileObj
|
The file object.
|
ExampleThe
following example reads a file until it reaches the end of the file:
<h3>FileIsEOF Example</h3>
<cfscript>
myfile = FileOpen("c:\ColdFusion9\wwwroot\test1.txt", "read");
while(NOT FileIsEOF(myfile))
{
x = FileReadLine(myfile);
WriteOutput("#x# <br>");
}
FileClose(myfile);
</cfscript>
|