-1
我希望VB腳本檢查文件列表是否存在...如果不存在該文件名應該寫在另一個文本中...我將輸入作爲文本文件...這個文本包含文件名如何檢查文件列表是否存在
我希望VB腳本檢查文件列表是否存在...如果不存在該文件名應該寫在另一個文本中...我將輸入作爲文本文件...這個文本包含文件名如何檢查文件列表是否存在
dim filesys
Set filesys = CreateObject("Scripting.FileSystemObject")
If filesys.FileExists("c:\somefile.txt") Then
Response.Write("File exists")
Else
Response.Write("File does not exist")
End If
的所有列表這將文件是否存在或檢查不VB腳本
If File.Exists("c:\somefile.txt") = True Then
Response.Write("File exists")
Else
Response.Write("File does not exist")
End If
如果文件在VB中的存在與否這將檢查。淨(Imports System.IO
)
要檢查列表,您可以簡單地循環查看每個文件的列表。
VBScript或VB.net?請顯示你寫的一些代碼。 – shahkalpesh