gpt4 book ai didi

vbscript如何检查txt文件是否存在以及不创建空文件

转载 作者:行者123 更新时间:2023-12-05 01:48:37 29 4
gpt4 key购买 nike

如果 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>

最佳答案

<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>

关于vbscript如何检查txt文件是否存在以及不创建空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9465278/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com