aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/io_out/create_zip_file.d
blob: 09b481ac9e004b5756adaa4846556344bbe8d47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module doc_reform.io_out.create_zip_file;
template createZipFile() {
  import std.file;
  import std.outbuffer;
  import std.string;
  import std.zip;
  void createZipFile(
    string zip_file_name,
    void[] compressed_zip_data,
  ) {
    try {
      write(zip_file_name, compressed_zip_data);
    } catch (ZipException ex) {
      // Handle Errors
    }
  }
}