Creating and Reading Files
Overview
Example:
def UserFunction(id, eliona):
f = eliona.OpenFile("example_file.txt", "w")
f.write("This is a test content.\n")
f.close()Store Files in the SSR Pod and Use them from Scripts
f = eliona.OpenFile("example_file.txt", "w")Last updated