JavaScript:从 After Effects 写入和附加文本文件
JavaScript: Writing & appending text files from After Effects
正在检查 txt 文件是否已经存在。如果它存在,我想打开并追加。如果 !exist 我想创建、打开、写入。我不知道如何附加文件...
到目前为止,这是我的代码:
function writeReport(path, reportText) {
var reportFile = new File(path + "/font_report.txt");
if(reportFile.exists){
alert('file already exists');
reportFile.open("w");
reportFile.write(reportText);
reportFile.close();
}
else{
var RCF_file = new File(reportFile);
RCF_file.open("w");
RCF_file.write(reportText);
RCF_file.close();
}
alert('Report Complete');
}
if(exists) 中的代码显然与 else{} 中的代码相同 - 不确定应该是什么...
追加文件需要通过追加模式...
reportFile.open("a");
正在检查 txt 文件是否已经存在。如果它存在,我想打开并追加。如果 !exist 我想创建、打开、写入。我不知道如何附加文件...
到目前为止,这是我的代码:
function writeReport(path, reportText) {
var reportFile = new File(path + "/font_report.txt");
if(reportFile.exists){
alert('file already exists');
reportFile.open("w");
reportFile.write(reportText);
reportFile.close();
}
else{
var RCF_file = new File(reportFile);
RCF_file.open("w");
RCF_file.write(reportText);
RCF_file.close();
}
alert('Report Complete');
}
if(exists) 中的代码显然与 else{} 中的代码相同 - 不确定应该是什么...
追加文件需要通过追加模式...
reportFile.open("a");