Where To Store Csv File

I have a script that creates csv files via console command. I later want to be able to download these via the web. Where do you guys recommend placing these csv files? What is best practice?

I’m considering creating a new folder called “files” in the root.

Maybe somewhere in the runtime directory? It’s already used by the application to write files. Something like runtime/consoleGeneratedFiles might work.

Thanks Keith,

That is what I ended up going with.