Method Filesystem.Monitor.symlinks()->file_created()
- Method file_created
void
file_created(string
path
,Stdio.Stat
st
)- Description
File creation callback.
- Parameter
path
Path of the new file or directory.
- Parameter
st
Status information for
path
as obtained byfile_stat(path)
.This function is called when either a monitored path has started existing, or when a new file or directory has been added to a monitored directory.
- Note
It differs from the Filesystem.Monitor.basic version in that symbolic links have the
st
of their targets.Called by check() and check_monitor().
Overload this to do something useful.