* General code cleanup
[project/luci.git] / core / src / ffluci / fs.lua
index 6e8859a..3eb562b 100644 (file)
@@ -28,6 +28,11 @@ module("ffluci.fs", package.seeall)
 
 require("posix")
 
+-- Glob
+function glob(pattern)
+       return posix.glob(pattern)
+end
+
 -- Checks whether a file exists
 function isfile(filename)
        local fp = io.open(path, "r")