diff --git a/http/file_list.lua b/http/file_list.lua
index 2935ec8..d994043 100644
--- a/http/file_list.lua
+++ b/http/file_list.lua
@@ -7,12 +7,16 @@ return function (connection, req, args)
Server File Listing
]===])
- local remaining, used, total=file.fsinfo()
+ local remaining, used, total = file.fsinfo()
connection:send("Total size: " .. total .. " bytes
\n" ..
"In Use: " .. used .. " bytes
\n" ..
- "Free: " .. remaining .. " bytes
\n" ..
- "\nFiles:
\n
\n")
+ "Free: " .. remaining .. " bytes
\n")
+ local flashAddress, flashSize = file.fscfg ()
+ connection:send("Flash Address: " .. flashAddress .. " bytes
\n" ..
+ "Flash Size: " .. flashSize .. " bytes
\n")
+
+ connection:send("\nFiles:
\n
\n")
for name, size in pairs(file.list()) do
local isHttpFile = string.match(name, "(http/)") ~= nil
if isHttpFile then