FileWatchRemoveΒΆ

FileWatchRemove removes a file from the list of watched files.

bool = FileWatchRemove(ssFileName)

Return Value

bool is TRUE, if the file could be removed from the list of watched files.

Parameters

ssFileName

Complete file name.

Example

FileWatchAdd("c:/test.txt", "MyReloadFunction");
def MyReloadFunction(ssFile)
{
    // Do something with the file
    ....
    FileWatchRemove(ssFile)
}

id-334932