본문 바로가기

Study Memos/Windows Programming

비어있는 Zip 파일 만들기 (Section 70)

참고> blog.naver.com/tipsware/221147948788

 

1. 빈 파일에 Zip 파일 헤더 정보를 넣어주면 비어있는 Zip 파일을 만들 수 있다.

  -> unsigned char table[22] = {0x50, 0x4B, 0x05, 0x06, 0x00,};

      fwrite(table, 1, 22, p_file);

      fclose(p_file);

반응형