检查是否已存在txt文件。如果存在,我想打开并追加。如果存在!我想创建,打开,编写。我不知道如何附加文件...

到目前为止,这是我的代码:

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");

10-08 01:45