Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== OnFileUpdate ====== Event of [[:scripting:api:file-system-listener:start|IFileSystemListener]] ===== Description ===== Called after registered file system event ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **sPath** * [[:scripting:api:file-system-event|eFileSystemEvent]] **eEvent** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.OnFileUpdate = function(eEvent) { }; </code>==== Visual Basic Script ==== <code vb> function OnFileUpdate(eEvent) { } Appplication.OnFileUpdate = OnFileUpdate </code>==== C++ ==== <code cpp> HRESULT CFileSystemListener::OnFileUpdate(BSTR sPath, eFileSystemEvent eEvent) { } </code>===== See Also ===== [[:scripting:api:file-system-listener:start|IFileSystemListener]] ~~NOTOC~~