Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Add a Line to the Top of a Text FileContent of Add a Line to the Top of a Text File.vbsMD5 Hash: 86EA096F23FC8FDAD80E32ADBFF5BCC3 |
||
Const ForReading = 1
Const ForWriting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile("C:\Scripts\Test.txt", ForReading) strContents = objFile.ReadAll objFile.Close strFirstLine = "This is the new first line in the text file." strNewContents = strFirstLine & vbCrLf & strContents Set objFile = objFSO.OpenTextFile("C:\Scripts\Test.txt", ForWriting) objFile.WriteLine strNewContents objFile.Close | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |