writeMIDIFile

writeMIDIFile essentially does the same as writeMIDI to a range object that writes to a std.stdio.File, but it is given for convenience.

There are two overloads, one for a std.stdio.File object and one for a path (which opens the file for you in write mode).

  1. void writeMIDIFile(File file, MIDI midi)
    void
    writeMIDIFile
    ()
    (
    File file
    ,
    ref const MIDI midi
    )
  2. void writeMIDIFile(string path, MIDI midi)

Meta