Hello !
I am trying something new using a server side sccripting:
I want to create a file, but the user can’t know where it is in the server,
so what I am currently doing is that:
-
I post a file to rest/files/container/fake/path
-
and into the script files.container.post.pre_process, I make something like
event.request_path = "rest/files/container/real/path";
But in the end, the new file is created in rest/files/container/fake/path
Is it possible to change the path the file will be saved once in the post.pre_process script ?
If so, how can I do that ?
If it is not the good way to do that, how can I do it ?
Cheers