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

function main(watchdir)
    print("watch %s ..", watchdir)
    fwatcher.on_deleted(watchdir, function (filepath)
        print(filepath, "deleted")
    end)
end