Método ReadLine

Lee una línea completa (hasta, pero sin incluir, el carácter de nueva línea) de un archivo TextStream y devuelve la cadena resultante.

Sintaxis

object.ReadLine( )

Argumentos

Object: necesario. Siempre es el nombre de un objeto TextStream.

Observaciones

En el siguiente ejemplo se muestra el uso del método ReadLine:

Ejemplo 1:

Function ReadFirstLine(filepath)
    Const ForReading = 1
    Dim fso, theFile, firstLine
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set theFile = fso.OpenTextFile(filepath, ForReading)
    firstLine = theFile.ReadLine
    theFile.Close
    ReadFirstLine = firstLine
End Function

' Usage
Dim firstLineContent
firstLineContent = ReadFirstLine("C:\Path\To\Your\File.txt")

Ejemplo 2:

Function ReadFileLineByLine(filepath)
    Const ForReading = 1
    Dim fso, theFile, line
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set theFile = fso.OpenTextFile(filepath, ForReading)
    Do While Not theFile.AtEndOfStream
        line = theFile.ReadLine
     Loop
    theFile.Close
End Function

' Usage
ReadFileLineByLine "C:\Path\To\Your\File.txt"