#how to pass O.APPEND to std.fs.createFileAbsolute?
1 messages · Page 1 of 1 (latest)
I'm not sure if there is a way directly, what you can do is create/open with .truncate = false, and seek to the end
yeah, i surely can do that.
but i think that approach is a waste, since it means open + stat + seek, while it can be done using a single open(...TRUNC|CREAT|APPEND)