'**************************************************************
txtFilePath= "C:\abc.txt"
txtRowNumber=3 ' Row number to update
TextToAdd="three"
Set fso= CreateObject( "scripting. FilesystemObject ")
Set f=fso.OpenTextFile( txtFilePath, 1)
txtData=f.readall
f.close
Set f=fso.OpenTextFile( txtFilePath, 2)
strTxtData=split( txtData,vbnewlin e)
For cnt=0 to ubound(strTxtData)
If cnt<>txtRowNumber- 1 Then
f.writeline( strTxtData( cnt))
else
f.writeline( TextToAdd )
End If
Next
f.close
'**************************************************************
No comments :
Post a Comment