how can a create a folders in render perssistent disk

How can I create folders on persistent disk and access them through https. requests for
I have an application that requires storing video files in several different destinations
These videos are uploaded and deleted via the website and downloaded via an Android app.
How can I create these directories on persistent disk?

Hi there,

You create directories on the disk just like you would any other file system.

Your code can do this, or you can run mkdir commands from a web shell/SSH.

You’ll need to write code (i.e. an API) that serves them in response to HTTPs requests.

Regards,

Matt

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.