• File 组件的 AppendToFile(text, fileName):文件不存在则创建,存在则追加。官方文档原文:"Appends text to the end of a file. Creates the file if it does not already exist."
• 写入实现 FileStreamWriteOperation:append 参数决定追加/覆盖,写入过程无大小校验、无写入频率限制
• 存储位置(Scope=App 默认):写入 App 专属目录,容量只受设备剩余空间限制
• 全程没有 maxsize / rotation 之类的机制