本帖被 尘与风 设置为精华(2008-04-27)
If Dir("C:\1.TXT") = "" Then '如果1.txt不存在 Open "C:\1.TXT" For Output As #1 '创建文件 Print #1, "" Close #1End If