- fstat=fs.stat(fs.realpath(path..'/'..name))
- if fstat["type"]=="reg" then
- ftype="file"
- elseif fstat["type"]=="dir" then
- ftype="dir"
- else
- ftype=""
- end
- if ftype then
- rec={name=name,rights=fstat["modestr"],size=fstat["size"],type=ftype,date=os.date('%Y-%m-%d %H:%M:%S',fstat["mtime"])}
- table.insert(files,rec)
- end
+ basename=fs.realpath(path..'/'..name)
+ if basename then
+ fstat=fs.stat(fs.realpath(path..'/'..name))
+ if fstat["type"]=="reg" then
+ ftype="file"
+ elseif fstat["type"]=="dir" then
+ ftype="dir"
+ else
+ ftype=""
+ end
+ if ftype then
+ rec={name=name,rights=fstat["modestr"],size=fstat["size"],type=ftype,date=os.date('%Y-%m-%d %H:%M:%S',fstat["mtime"])}
+ table.insert(files,rec)
+ end
+ end