Hello,
It seems that you need a blank file named rad.txt.
(are you facing problem as you remove the contents of the file, the file is removed from the disk)
I am not sure I understood the requirement clearly, but here is what I suggest :
Sub CreateAfile()
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("c:\rad.txt", True)
a.Close
fs = Null
End Sub
This will overwrite the existing rad.txt creating a blank one.
HTH
jp