docs

Home All functions Categories

vuFolderWatchStart(fName)

vuFolderWatchStart(*CSTRING), Signed

Description

Launches a Windows thread to monitor changes to the specified folder or its contents. Changes include file additions, modifications, or deletions within the folder or its subfolders.

Parameters

Parameter Data Type Description
fName CSTRING(256) Fully qualified path of the folder to watch

Returns

On success, returns the count of the number of folders currently being watched.

Example

fName = 'C:\Valutilities\Test'
x# = vuFolderWatchStart(fName)

IF x# > 0
  MESSAGE('Folder is being watched. Total watched folders = ' & x#)
END

Notes

Home All functions Categories