Returns True if a specified folder exists; False if it does not.
object.FolderExists(folderspec)
The following example illustrates the use of the FileExists method.
[JScript] function ReportFolderStatus(fldr) { var fso, s = fldr; fso = new ActiveXObject("Scripting.FileSystemObject"); if (fso.FolderExists(fldr)) s += " exists."; else s += " doesn't exist."; return(s); } [VBScript] Function ReportFolderStatus(fldr) Dim fso, msg Set fso = CreateObject("Scripting.FileSystemObject") If (fso.FolderExists(fldr)) Then msg = fldr & " exists." Else msg = fldr & " doesn't exist." End If ReportFolderStatus = msg End Function
DriveExists Method | FileExists Method | GetFolder Method | GetParentFolderName Method
Applies To: FileSystemObject Object