Đối với những ai đang tìm kiếm một cách để xem một tập tin cụ thể để tồn tại trong VBS:
Function bIsFileDownloaded(strPath, timeout)
Dim FSO, fileIsDownloaded
set FSO = CreateObject("Scripting.FileSystemObject")
fileIsDownloaded = false
limit = DateAdd("s", timeout, Now)
Do While Now < limit
If FSO.FileExists(strPath) Then : fileIsDownloaded = True : Exit Do : End If
WScript.Sleep 1000
Loop
Set FSO = Nothing
bIsFileDownloaded = fileIsDownloaded
End Function
Cách sử dụng:
FileName = "C:\test.txt"
fileIsDownloaded = bIsFileDownloaded(FileName, 5) ' keep watching for 5 seconds
If fileIsDownloaded Then
WScript.Echo Now & " File is Downloaded: " & FileName
Else
WScript.Echo Now & " Timeout, file not found: " & FileName
End If
Nguồn
2018-02-14 14:02:33
Bạn đã tìm kiếm 'tệp vbscript tồn tại' ở bất kỳ đâu? – Fionnuala
@ Fionnuala nhưng đây * là * kết quả đầu tiên từ google: D;) – gordatron