sort files and dirs
This commit is contained in:
parent
b47f7c8e75
commit
82035ea239
@ -30,6 +30,14 @@ local type_allowed = { jpg=true, jpeg=true, png=true, gif=true, mp3=true, flac=t
|
|||||||
|
|
||||||
local utils = {}
|
local utils = {}
|
||||||
|
|
||||||
|
utils['compare_file'] = function(a, b)
|
||||||
|
return a["file"] < b["file"]
|
||||||
|
end
|
||||||
|
|
||||||
|
utils['compare_dir'] = function(a, b)
|
||||||
|
return a["dir"] < b["dir"]
|
||||||
|
end
|
||||||
|
|
||||||
utils['request_path'] = request_path
|
utils['request_path'] = request_path
|
||||||
utils['data_path'] = data_path
|
utils['data_path'] = data_path
|
||||||
|
|
||||||
@ -73,8 +81,8 @@ utils['these_files'] = function( path )
|
|||||||
end
|
end
|
||||||
|
|
||||||
table.sort( images )
|
table.sort( images )
|
||||||
-- table.sort( files )
|
table.sort( files, utils.compare_file )
|
||||||
-- table.sort( dirs )
|
table.sort( dirs, utils.compare_dir )
|
||||||
|
|
||||||
local stuff = {
|
local stuff = {
|
||||||
files = files,
|
files = files,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user