DP News-Robot |
23. Aug 2018 19:10 |
Delphi: create or append to a TFileStream
It looks like the Delphi [WayBack]*TFileStream.Create does not have an overload that allows you to create or append. Luckily, [Archive.is] TFile.Open allows you to do this when passing the correct [Archive.is]*TFileMode*enumeration value: TempStream := TFile.Open(TempPath, TFileMode.fmOpenOrCreate, TFileAccess.faReadWrite, TFileShare.fsRead); I still wonder why that never made it into a TFileStream.Create overload, or why these overloads fail […]
Weiterlesen...
|