Closing a file in ASP
<% Dim oFile Set oFile = File_OpenExisting( "c:\test.log", File_OpenForReading ) If oFile Is Nothing Then Response.Write "Not existing" Else Response.Write "Existing" 'Here we can start reading from it End If oFile.Close 'ASP Code continues... %>
