Question
Create files with javascript?
Hello,
I would like make a config file for my script that i would like to put in the %appdata%\adobe folder.
- How can i reah the value of %appdata% inside javascript?
- How do i create and read files?
I am currently reading the Extendscript javascript toolsguide but i cant figure out how to create a file:
Should not this code create a file in C:\ directory?
Fille = new File('C:\test.txt');
Fille.write("Testwriting!");
Fille.close();
/ asdfasdfasdf
