Written wav files always show as length 0

Hi, I’m trying to write some 16-bit, 48k wav files - all the data is being written - I can see it if I open the file in Hexfiend, but if I take a look at the file through finder, they always show as length 0.

Any ideas? thx

The actual length is written in the destructor of the FileFormatWriter. If you kill (e.g. because of the LeakDetector firing), the length is not written.

1 Like

Thanks @daniel that was it!