(no commit message)
[project/luci.git] / core / src / ffluci / fs.lua
1 --[[
2 FFLuCI - Filesystem tools
3
4 Description:
5 A module offering often needed filesystem manipulation functions
6
7 FileId:
8 $Id$
9
10 License:
11 Copyright 2008 Steven Barth <steven@midlink.org>
12
13 Licensed under the Apache License, Version 2.0 (the "License");
14 you may not use this file except in compliance with the License.
15 You may obtain a copy of the License at 
16
17         http://www.apache.org/licenses/LICENSE-2.0 
18
19 Unless required by applicable law or agreed to in writing, software
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
24
25 ]]--
26
27 module("ffluci.fs", package.seeall)
28
29 require("posix")
30
31 -- Glob
32 function glob(pattern)
33         return posix.glob(pattern)
34 end
35
36 -- Checks whether a file exists
37 function isfile(filename)
38         local fp = io.open(filename, "r")
39         if fp then fp:close() end
40         return fp ~= nil
41 end     
42
43 -- Returns the content of file
44 function readfile(filename)
45         local fp, err = io.open(filename)
46         
47         if fp == nil then
48                 return nil, err
49         end
50         
51         local data = fp:read("*a")
52         fp:close()
53         return data     
54 end
55
56 -- Writes given data to a file
57 function writefile(filename, data)
58         local fp, err = io.open(filename, "w")
59         
60         if fp == nil then
61                 return nil, err
62         end
63         
64         fp:write(data)
65         fp:close()
66         
67         return true
68 end
69
70 -- Returns the file modification date/time of "path"
71 function mtime(path)
72         return posix.stat(path, "mtime")
73 end
74
75 -- basename wrapper
76 basename = posix.basename
77
78 -- dirname wrapper
79 dirname = posix.dirname
80
81 -- dir wrapper
82 function dir(path)
83         local dir = {}
84         for node in posix.files(path) do
85                 table.insert(dir, 1, node)
86         end 
87         return dir
88 end
89
90 -- Alias for posix.mkdir
91 mkdir = posix.mkdir
92
93 -- Alias for posix.rmdir
94 rmdir = posix.rmdir