summaryrefslogtreecommitdiffstats
path: root/acf/persistence/backends/json.lua
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-04-26 16:07:10 +0300
committerKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-04-26 16:07:10 +0300
commit13eb04abbc9d8561e44786ce9b0dd94bc1454e1f (patch)
treede9e355d35daaad565803c76f107c9617c79ed7b /acf/persistence/backends/json.lua
parentaa778f7cbe0285056516b15044037309f9ec95e7 (diff)
downloadacf2-13eb04abbc9d8561e44786ce9b0dd94bc1454e1f.tar.bz2
acf2-13eb04abbc9d8561e44786ce9b0dd94bc1454e1f.tar.xz
substitute lua-posix for lua-filesystem
Diffstat (limited to 'acf/persistence/backends/json.lua')
-rw-r--r--acf/persistence/backends/json.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/acf/persistence/backends/json.lua b/acf/persistence/backends/json.lua
index 299cf72..1ac977e 100644
--- a/acf/persistence/backends/json.lua
+++ b/acf/persistence/backends/json.lua
@@ -11,7 +11,7 @@ local util = require('acf.persistence.util')
local copy = require('acf.util').copy
require 'json'
-require 'lfs'
+require 'posix'
backend = require('acf.object').class()
@@ -40,12 +40,12 @@ function backend:split_path(path)
fpath = pth.mjoin(fpath, jpath[1])
table.remove(jpath, 1)
- local attrs = lfs.attributes(fpath)
- if not attrs or not ({directory=true, file=true})[attrs.mode] then
+ local t = posix.stat(fpath, 'type')
+ if not t or not ({directory=true, regular=true})[t] then
error('File or directory does not exist: '..fpath)
end
- if attrs.mode == 'file' then return fpath, jpath end
+ if t == 'regular' then return fpath, jpath end
assert(#jpath > 0)
end