Does Ktor support directory browsing (rather than ...
# ktor
c
Does Ktor support directory browsing (rather than just serving static files)? I'm happy to implement my own if need be but would rather avoid the extra effort if there's a way to enable it out of the box.
a
c
Yes exactly 😄
a
Unfortunately, there is no such functionality.
c
That's what I figured, thanks for confirming. I guess it's a bit out of scope for Ktor to support it anyway, but shouldn't be too hard to roll my own.
c
i would have thought that static file serving would be enough for the server to show what's available there. i guess not?
a
That's not enough because the directories need to be served, too.
today i learned 1