From a web application I want to copy files in a directory in which there are a huge amount of files (this is an Azure container, by the way).
I would like to know if I should mount the remote directory from server startup or if I should mount and unmount it every time a file copy occurs. I must say that the copies would be very sporadic (maybe, a copy of a few files every 2 days).
What I don't know is if the directories will be mounted at startup and will be consuming a lot of resources to the server (which is not very powerful).
Thank you.