As I mention, I am not reading a table, so Spark is not the right fit here (plus I don't want to included spark as dependencies to read a csv either). I also don't have dbutils.
I found this works:
```
cfg = Config() #This is available inside app
w = WorkspaceClient(host=cfg.host, token=cfg.token)
volume_path = "some_path"
response = w.files.download(volume_path + "file_name")
```
I am just not sure if this is the right way to do that, it would be great if the docs explains clearly what Databricks App have access to.