Skip to content
This repository was archived by the owner on Dec 30, 2019. It is now read-only.

Fix copy issues

Choose a tag to compare

@sv2dev sv2dev released this 03 Jan 06:52
· 6 commits to master since this release

Bug fixes

Copying files with a different format than utf-8 lead to corrupted destination files.
This was due to reading the file and interpreting it as utf-8 before writing it to the destination.
Now the copying is done with a performant stream solution.

This solution also has two performance benefits:

  • Less memory usage, since the read data is immediately written to the output file.
  • Faster, because we start writing before the whole source file is read out.