Can someone tell me how I can export a directory on my host? The following code "seems" to work (i.e. no exception and I see the EXPORTING ... and EXPORTED ... message in my console) but didn't.
if ctr:
print("EXPORTING..................")
try:
ctr.directory("/app/src").export("/app/tmp")
print("EXPORTED..................")
except Exception as exception:
print(f"ERROR - EXPORT {exception}")
I'm supposed to have a new /app/tmp folder on my disk but this is not the case.
Thanks