SpiderPig Posted April 11 Share Posted April 11 Is there an AppendFile function or similar available? Quote Link to comment Share on other sites More sharing options...
Josh Posted April 11 Share Posted April 11 https://www.ultraengine.com/learn/Stream_Write?lang=cpp 1 Quote My job is to make tools you love, with the features you want, and performance you can't live without. Link to comment Share on other sites More sharing options...
Solution SpiderPig Posted April 11 Author Solution Share Posted April 11 Thanks, I just figured it out. I just needed to add a line to an existing file. auto stream = OpenFile(path + "\\Game.log"); if (stream != nullptr) { auto pos = stream->GetSize(); stream->Seek(pos); stream->WriteLine(line.ToString()); stream->Close(); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.