| Home | All functions | Categories |
vuFolderExists(*CSTRING), Signed
Checks if a specified folder (path) exists. Supports mapped drives and UNC paths.
| Parameter | Data Type | Description |
|---|---|---|
| PathName | CSTRING(256) | Fully qualified name of the folder to test |
1 (True) if the folder exists, 0 (False) if it does not.
PathName = 'C:\Valutilities\Temp'
IF vuFolderExists(PathName) = 1
MESSAGE('Folder exists!')
ELSE
MESSAGE('Folder not found.')
END
| Home | All functions | Categories |