summaryrefslogtreecommitdiff
path: root/tests/modules/fwatcher/on_created.lua
blob: 3dee566350187bae66992024f71cd8ce543aae23 (plain)
1
2
3
4
5
6
7
8
import("core.base.fwatcher")

function main(watchdir)
    print("watch %s ..", watchdir)
    fwatcher.on_created(watchdir, function (filepath)
        print(filepath, "created")
    end)
end