如果C:\ Temp \ CAD_Kunde.txt中的txt文件存在且如何不存在则应该使用vbscript检查它是否应为空。
编辑: 我收到一个错误(当我使用它时,第11行第1行的预期声明:
<SCRIPT Language="VBScript">
Sub Window_OnLoad
//Line 11 is the one below:
Option Explicit
Dim oFSO, oTxtFile
Set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists("C:\Temp\CAD_Kunde.txt") then
Msgbox "File Exist"
Else
Set oTxtFile = oFSO.CreateTextFile("C:\Temp\CAD_Kunde.txt")
Msgbox "File Created"
End If
End Sub
</script>
答案 0 :(得分:3)
<SCRIPT Language="VBScript">
Sub Window_OnLoad
Option Explicit
Dim oTxtFile
With (CreateObject("Scripting.FileSystemObject"))
If .FileExists("C:\Temp\CAD_Kunde.txt") Then
Msgbox "File Exist"
Else
Set oTxtFile = .CreateTextFile("C:\Temp\CAD_Kunde.txt")
Msgbox "File Created"
End If
End With
End Sub
</script>
答案 1 :(得分:0)
很容易
Option Explicit
Dim oFSO, oTxtFile
Set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists("C:\Temp\CAD_Kunde.txt") Then
Msgbox "File Exist"
Else
Set oTxtFile = oFSO.CreateTextFile("C:\Temp\CAD_Kunde.txt")
Msgbox "File Created"
End If
答案 2 :(得分:0)
如果你不关心区分存在/不存在而只是想确保存在,你可以
set f = CreateObject("Scripting.FileSystemObject").OpenTextFile("c:\blabla", 1, true)
f.close()