Oh ok, I misunderstood your question.To solve your problem, you could run the below VBScript (checks if the file is 0 bytes, if it is add a space to the file) prior to the transfer of the data.dim filesys, readfile, filetxtConst ForReading = 1, ForWriting = 2, ForAppending = 8 set filesys = CreateObject("Scripting.FileSystemObject") set readfile = filesys.GetFile("c:\temp\somefile.txt")Set filetxt = filesys.OpenTextFile("c:\temp\somefile.txt", ForWriting, True) If readfile.Size = 0 Then filetxt.WriteLine(" ") filetxt.Close End IfTara