I have a cloud function that downloads a file to the /tmp/ dir of node instance.
I have two questions:
1) If two instances of this cloud function run at the same time and both save files to this /tmp/ directory... will the files be seen by both instances?
2) Because of the possible collision of files in my first question. I want to know if cloud functions lets you create directories within /tmp/. I tried using fs.mkdirSync(newPath)
but when I run code it always says that the new directory doesn't exist.