Answered
Create a simple txt file from extendscript.
run.txt file not created in c drive.???
var myFile=new File("/C/run.txt");
var content="ABCDEF";
myFile.write(content);
run.txt file not created in c drive.???
var myFile=new File("/C/run.txt");
var content="ABCDEF";
myFile.write(content);
maybe
var myFile=new File("C:\\run.txt");
?
Also make sure that the AE preference "Allow scripts to write files and access network" is enabled.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.