我正在尝试在文件夹位置找到现有文件
当前代码:
Dim FileExistsbol As Boolean
Dim stFileName As String
stFileName = "H:\Test File.txt"
stFileName = Trim(stFileName)
FileExistsbol = dir(stFileName) <> vbNullString
If FileExistsbol Then Kill stFileName
错误:
错误消息为:类型不匹配 VBA在此行上进行调试:
FileExistsbol = dir(stFileName) <> vbNullString
文件确实存在,所以不确定如何解决这个问题 - 任何想法?
答案 0 :(得分:1)
我会删除FileExistsbol变量,然后执行以下操作:
If Dir(stFileName) <> "" Then
Kill stFileName
End If