I have a folder that is so large that I cannot open it so I wrote a simple .vbs script to wipe the files within it.
Is there a way to display it's progress as as the file stands it just does it in the background and we don`t know how it is doing.
Code:
dim fso
dim folder
dim file
dim x
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.GetFolder("C:\myfolder")
For Each file In folder.Files
file.Delete
x = x + 1
If x = 100000 Then
Exit For
End If
Next
x = 0
Is there a way to display it's progress as as the file stands it just does it in the background and we don`t know how it is doing.