.. highlightlang:: us .. index:: FileWatchRemove .. _filewatchremove: FileWatchRemove =============== .. us.tag FileWatchRemove ENGLISH FILE_MISC New321 :ref:`FileWatchRemove` removes a file from the list of watched files. .. function:: bool = FileWatchRemove(ssFileName) .. us.return **Return Value** *bool* is TRUE, if the file could be removed from the list of watched files. .. us.params **Parameters** .. uparam:: ssFileName Complete file name. .. us.example **Example** :: FileWatchAdd("c:/test.txt", "MyReloadFunction"); def MyReloadFunction(ssFile) { // Do something with the file .... FileWatchRemove(ssFile) } .. seealso:: :ref:`overview-binary-and-text-files`, :ref:`FileWatchAdd` :sub:`id-334932`