Personally, I think that the FileSystemObjec t is overkill for such a simple operation. To empty out the contents of a file, you can can use two simple statements.
Code:
Open "YourFile.Txt" For Output Access Write Lock Write As #1 Close #1
Comment