06-27-2021, 08:14 AM
[quote]
import os.path
File "<input>", line 1
rt os.path
^
[/code]
This is wrong, obviously the "import" was truncated, so the rest the command didn't do what I want.
Can you retry with these three:
And d'ont process tp the next of the previous one didn't work?
import os.path
File "<input>", line 1
rt os.path
^
[/code]
This is wrong, obviously the "import" was truncated, so the rest the command didn't do what I want.
Can you retry with these three:
Code:
import os.path
Code:
fname=os.path.join(gimp.directory,'testfile.dat')
print fname
Code:
with open(fname,'w') as dat:
dat.write('Test successful')
And d'ont process tp the next of the previous one didn't work?