Lit une ligne entière (jusqu'au caractère de retour à la ligne sans l'inclure) dans un fichier TextStream et renvoie la chaîne résultante.
Syntaxe
object.ReadLine( )
Arguments
object : requis. Toujours le nom d'un objet TextStream.
Remarques
Les exemples suivants illustrent l'utilisation de la méthode ReadLine :
Exemple 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")
Exemple 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"