docs

Home All functions Categories

vuFolderExists(PathName)

vuFolderExists(*CSTRING), Signed

Description

Checks if a specified folder (path) exists. Supports mapped drives and UNC paths.

Parameters

Parameter Data Type Description
PathName CSTRING(256) Fully qualified name of the folder to test

Returns

1 (True) if the folder exists, 0 (False) if it does not.

Example

PathName = 'C:\Valutilities\Temp'

IF vuFolderExists(PathName) = 1
  MESSAGE('Folder exists!')
ELSE
  MESSAGE('Folder not found.')
END
Home All functions Categories