Create ,Read and write a text file
In this post, we are going to learn how to Create ,Read and write a text file . Creating a text File: Set FSO = CreateObject(“Scripting.FileSystemObject”) Set oFile = FSO.CreateTextFile(“D:\Sample.txt”,True) oFile.Close Set oFile = Nothing...