calidion
01/26/2025, 7:25 PMfun Application.download(iDownload: IShare) {
routing {
route("/download") {
staticFiles(
"/statics",
File("files")
// iDownload.downloadDir()
)
get("/apk") {
call.respondFile(iDownload.myApk())
}
}
}
}
url /download/apk
is available, while /download/statics
is 404. not found.calidion
01/27/2025, 7:24 AMAleksei Tirman [JB]
01/27/2025, 7:55 AM/download/statics
request?calidion
01/27/2025, 8:24 AMcalidion
01/27/2025, 8:24 AMAleksei Tirman [JB]
01/27/2025, 8:26 AMstaticFiles
method doesn't render the file listings. It could return the content of a default file specified by the index
argument.calidion
01/27/2025, 8:30 AMcalidion
01/27/2025, 8:31 AMcalidion
01/27/2025, 8:33 AMfile indexing is not enabled.
Aleksei Tirman [JB]
01/27/2025, 9:23 AMstaticFiles
to return the file listing.