我正在寻找与R / Python中的tempfile函数类似的东西: https://docs.python.org/3/library/tempfile.html https://www.rdocumentation.org/packages/base/versions/3.6.1/topics/tempfile
这在Mosel中存在吗?
答案 0 :(得分:1)
您可以使用I / O驱动程序“ tmp:”在Mosel实例的临时目录中创建一个文件,可能与函数“ newmuid”结合使用以创建唯一的标识符作为文件名,例如: / p>
tmpfname:="tmp:"+newmuid
fopen(tmpfname, F_OUTPUT)
writeln("This line is written into the temporary file")
fclose(F_OUTPUT)