Método SkipLine do ASP

Definição e Uso

O método SkipLine pula uma linha ao ler o arquivo TextStream.

Sintaxe:

TextStreamObject.SkipLine

Exemplo

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject") 
set f=fs.CreateTextFile("c:\test.txt")
f.writeline("Line 1")
f.writeline("Line 2")
f.writeline("Line 3")
f.close
set t=fs.OpenTextFile("c:\test.txt",1,false)
t.SkipLine
x=t.ReadAll
t.close 
Response.Write("Output after skipping the first ")
Response.Write("linha no arquivo: " & x)
%>

Saída:

Saída após pular a primeira linha do arquivo: Linha 2
Linha 3