This package is designed to enhance Go's built-in http file server function and provide additional features.
Go to file
Your Name 948ff87877 update repo and modules 2023-04-21 11:29:57 -05:00
example update repo and modules 2023-04-21 11:29:57 -05:00
.gitignore Initial import 2018-08-24 13:01:44 +00:00
README.md update repo and modules 2023-04-21 11:29:57 -05:00
enhanced-file-server.go Missed a spot 2018-11-06 15:52:08 +00:00
go.mod update repo and modules 2023-04-21 11:29:57 -05:00

README.md

enhancedfileserver

This package is designed to enhance Go's built-in http file server function and provide additional features.

Where the native function's file listing was just an alphabetical set of files, this one adds file size, date, owner/group, and sorting capability.

This can be a drop-in replacement and is largely based on the original code. See the included example for a simple use, or https://git.teamworkapps.com/shortcut/httphere for something more practical.

Optionally, you can elect to not generate an automatic directory index by using FileServerNoIndex() in place of FileServer().