Skip to content

Instantly share code, notes, and snippets.

@hauxe
Created July 4, 2018 04:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hauxe/f88a87f4037bca23f04f6d100f6e08d4 to your computer and use it in GitHub Desktop.
Save hauxe/f88a87f4037bca23f04f6d100f6e08d4 to your computer and use it in GitHub Desktop.
// FileSystem custom file system handler
type FileSystem struct {
fs http.FileSystem
}
// Open opens file
func (fs FileSystem) Open(path string) (http.File, error) {
f, err := fs.fs.Open(path)
if err != nil {
return nil, err
}
s, err := f.Stat()
if s.IsDir() {
index := strings.TrimSuffix(path, "/") + "/index.html"
if _, err := fs.fs.Open(index); err != nil {
return nil, err
}
}
return f, nil
}
@ariden83
Copy link

not working ..

@prestonchoate
Copy link

Thank you for this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment