PRINT "It is ", BOOL$(ISFOLDER("C:\Windows\System32")), " that the folder C:\Windows\System32 exists."
PRINT "It is ", BOOL$(ISFILE("C:\Windows\System32\cmd.exe")), " that the file C:\Windows\System32\cmd.exe exists."
Result:
It is True that the folder C:\Windows\System32 exists.
It is False that the file C:\Windows\System32\cmd.exe exists.