Question About Missing `append` Method in Effect-TS Filesystem Module

n00b Q: for the filesystem module, i can't find an append method, is that not implemented as part of the effect lib? not sure if i am missing an option somewhere

currently using:
    yield* fs.writeFileString(path.join(directory, fileName), AllSqlStatements)


but was looking for fs.appendFile, similar to https://nodejs.org/api/fs.html#fsappendfilepath-data-options-callback, but don't see it in https://effect-ts.github.io/effect/platform/FileSystem.ts.html
also possibly i should use a different method entirely or its a signal i am doing an anti pattern
Was this page helpful?