Scripting.FileSystemObject is a powerful utility, that is often used in Scripting languages. In , the Scripting.FileSystemObject is used to verify if a folder exists. It can be also used …
The following script snippet is handy at checking whether a folder exists or not at Window Script Hosting Environment using VBScript. Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FolderExists("C:\FSO") Then Set …