miniunz.c 17.4 KB
Newer Older
M
Mark Adler 已提交
1 2
/*
   miniunz.c
M
Mark Adler 已提交
3
   Version 1.1, February 14h, 2010
M
Mark Adler 已提交
4
   sample part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
M
Mark Adler 已提交
5

M
Mark Adler 已提交
6
         Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
M
Mark Adler 已提交
7

M
Mark Adler 已提交
8 9
         Modifications of Unzip for Zip64
         Copyright (C) 2007-2008 Even Rouault
M
Mark Adler 已提交
10

M
Mark Adler 已提交
11 12
         Modifications for Zip64 support on both zip and unzip
         Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
M
Mark Adler 已提交
13 14
*/

M
Mark Adler 已提交
15
#if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__))
M
Mark Adler 已提交
16 17 18 19 20 21 22 23 24 25 26 27
        #ifndef __USE_FILE_OFFSET64
                #define __USE_FILE_OFFSET64
        #endif
        #ifndef __USE_LARGEFILE64
                #define __USE_LARGEFILE64
        #endif
        #ifndef _LARGEFILE64_SOURCE
                #define _LARGEFILE64_SOURCE
        #endif
        #ifndef _FILE_OFFSET_BIT
                #define _FILE_OFFSET_BIT 64
        #endif
M
Mark Adler 已提交
28
#endif
M
Mark Adler 已提交
29

M
Mark Adler 已提交
30 31 32 33 34 35 36 37 38 39 40 41
#ifdef __APPLE__
// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
#define FTELLO_FUNC(stream) ftello(stream)
#define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
#else
#define FOPEN_FUNC(filename, mode) fopen64(filename, mode)
#define FTELLO_FUNC(stream) ftello64(stream)
#define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
#endif


M
Mark Adler 已提交
42 43 44 45 46 47
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
S
shuaiyutao 已提交
48
#include <sys/stat.h>
M
Mark Adler 已提交
49

M
Mark Adler 已提交
50
#ifdef _WIN32
M
Mark Adler 已提交
51 52
# include <direct.h>
# include <io.h>
M
Mark Adler 已提交
53 54 55
#else
# include <unistd.h>
# include <utime.h>
M
Mark Adler 已提交
56 57
#endif

M
Mark Adler 已提交
58

M
Mark Adler 已提交
59 60 61 62 63 64
#include "unzip.h"

#define CASESENSITIVITY (0)
#define WRITEBUFFERSIZE (8192)
#define MAXFILENAME (256)

M
Mark Adler 已提交
65
#ifdef _WIN32
M
Mark Adler 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
#define USEWIN32IOAPI
#include "iowin32.h"
#endif
/*
  mini unzip, demo of unzip package

  usage :
  Usage : miniunz [-exvlo] file.zip [file_to_extract] [-d extractdir]

  list the file in the zipfile, and print the content of FILE_ID.ZIP or README.TXT
    if it exists
*/


/* change_file_date : change the date/time of a file
    filename : the filename of the file where date/time must be modified
    dosdate : the new date at the MSDos format (4 bytes)
    tmu_date : the SAME new date at the tm_unz format */
S
shuaiyutao 已提交
84
static void change_file_date(filename,dosdate,tmu_date)
M
Mark Adler 已提交
85 86 87 88
    const char *filename;
    uLong dosdate;
    tm_unz tmu_date;
{
M
Mark Adler 已提交
89
#ifdef _WIN32
M
Mark Adler 已提交
90 91 92
  HANDLE hFile;
  FILETIME ftm,ftLocal,ftCreate,ftLastAcc,ftLastWrite;

M
Mark Adler 已提交
93
  hFile = CreateFileA(filename,GENERIC_READ | GENERIC_WRITE,
M
Mark Adler 已提交
94 95 96 97 98 99 100
                      0,NULL,OPEN_EXISTING,0,NULL);
  GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite);
  DosDateTimeToFileTime((WORD)(dosdate>>16),(WORD)dosdate,&ftLocal);
  LocalFileTimeToFileTime(&ftLocal,&ftm);
  SetFileTime(hFile,&ftm,&ftLastAcc,&ftm);
  CloseHandle(hFile);
#else
S
shuaiyutao 已提交
101 102
#if defined(unix) || defined(__APPLE__)
  (void)dosdate;
M
Mark Adler 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
  struct utimbuf ut;
  struct tm newdate;
  newdate.tm_sec = tmu_date.tm_sec;
  newdate.tm_min=tmu_date.tm_min;
  newdate.tm_hour=tmu_date.tm_hour;
  newdate.tm_mday=tmu_date.tm_mday;
  newdate.tm_mon=tmu_date.tm_mon;
  if (tmu_date.tm_year > 1900)
      newdate.tm_year=tmu_date.tm_year - 1900;
  else
      newdate.tm_year=tmu_date.tm_year ;
  newdate.tm_isdst=-1;

  ut.actime=ut.modtime=mktime(&newdate);
  utime(filename,&ut);
#endif
#endif
}


/* mymkdir and change_file_date are not 100 % portable
   As I don't know well Unix, I wait feedback for the unix portion */

S
shuaiyutao 已提交
126
static int mymkdir(dirname)
M
Mark Adler 已提交
127 128 129
    const char* dirname;
{
    int ret=0;
M
Mark Adler 已提交
130 131
#ifdef _WIN32
    ret = _mkdir(dirname);
M
Mark Adler 已提交
132 133 134
#elif unix
    ret = mkdir (dirname,0775);
#elif __APPLE__
M
Mark Adler 已提交
135 136 137 138 139
    ret = mkdir (dirname,0775);
#endif
    return ret;
}

S
shuaiyutao 已提交
140 141
static int makedir (newdir)
    const char *newdir;
M
Mark Adler 已提交
142 143 144
{
  char *buffer ;
  char *p;
S
shuaiyutao 已提交
145
  size_t len = strlen(newdir);
M
Mark Adler 已提交
146

S
shuaiyutao 已提交
147
  if (len == 0)
M
Mark Adler 已提交
148 149 150
    return 0;

  buffer = (char*)malloc(len+1);
M
Mark Adler 已提交
151 152 153 154 155
        if (buffer==NULL)
        {
                printf("Error allocating memory\n");
                return UNZ_INTERNALERROR;
        }
M
Mark Adler 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
  strcpy(buffer,newdir);

  if (buffer[len-1] == '/') {
    buffer[len-1] = '\0';
  }
  if (mymkdir(buffer) == 0)
    {
      free(buffer);
      return 1;
    }

  p = buffer+1;
  while (1)
    {
      char hold;

      while(*p && *p != '\\' && *p != '/')
        p++;
      hold = *p;
      *p = 0;
      if ((mymkdir(buffer) == -1) && (errno == ENOENT))
        {
          printf("couldn't create directory %s\n",buffer);
          free(buffer);
          return 0;
        }
      if (hold == 0)
        break;
      *p++ = hold;
    }
  free(buffer);
  return 1;
}

S
shuaiyutao 已提交
190
static void do_banner()
M
Mark Adler 已提交
191 192 193 194 195
{
    printf("MiniUnz 1.01b, demo of zLib + Unz package written by Gilles Vollant\n");
    printf("more info at http://www.winimage.com/zLibDll/unzip.html\n\n");
}

S
shuaiyutao 已提交
196
static void do_help()
M
Mark Adler 已提交
197 198 199 200 201 202 203 204 205 206 207
{
    printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
           "  -e  Extract without pathname (junk paths)\n" \
           "  -x  Extract with pathname\n" \
           "  -v  list files\n" \
           "  -l  list files\n" \
           "  -d  directory to extract into\n" \
           "  -o  overwrite files without prompting\n" \
           "  -p  extract crypted file using password\n\n");
}

S
shuaiyutao 已提交
208
static void Display64BitsSize(ZPOS64_T n, int size_char)
M
Mark Adler 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
{
  /* to avoid compatibility problem , we do here the conversion */
  char number[21];
  int offset=19;
  int pos_string = 19;
  number[20]=0;
  for (;;) {
      number[offset]=(char)((n%10)+'0');
      if (number[offset] != '0')
          pos_string=offset;
      n/=10;
      if (offset==0)
          break;
      offset--;
  }
  {
      int size_display_string = 19-pos_string;
      while (size_char > size_display_string)
      {
          size_char--;
          printf(" ");
      }
  }

  printf("%s",&number[pos_string]);
}
M
Mark Adler 已提交
235

S
shuaiyutao 已提交
236
static int do_list(uf)
M
Mark Adler 已提交
237 238 239
    unzFile uf;
{
    uLong i;
M
Mark Adler 已提交
240
    unz_global_info64 gi;
M
Mark Adler 已提交
241 242
    int err;

M
Mark Adler 已提交
243
    err = unzGetGlobalInfo64(uf,&gi);
M
Mark Adler 已提交
244 245
    if (err!=UNZ_OK)
        printf("error %d with zipfile in unzGetGlobalInfo \n",err);
M
Mark Adler 已提交
246 247
    printf("  Length  Method     Size Ratio   Date    Time   CRC-32     Name\n");
    printf("  ------  ------     ---- -----   ----    ----   ------     ----\n");
M
Mark Adler 已提交
248 249 250
    for (i=0;i<gi.number_entry;i++)
    {
        char filename_inzip[256];
M
Mark Adler 已提交
251
        unz_file_info64 file_info;
M
Mark Adler 已提交
252 253 254
        uLong ratio=0;
        const char *string_method;
        char charCrypt=' ';
M
Mark Adler 已提交
255
        err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
M
Mark Adler 已提交
256 257 258 259 260 261
        if (err!=UNZ_OK)
        {
            printf("error %d with zipfile in unzGetCurrentFileInfo\n",err);
            break;
        }
        if (file_info.uncompressed_size>0)
M
Mark Adler 已提交
262
            ratio = (uLong)((file_info.compressed_size*100)/file_info.uncompressed_size);
M
Mark Adler 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280

        /* display a '*' if the file is crypted */
        if ((file_info.flag & 1) != 0)
            charCrypt='*';

        if (file_info.compression_method==0)
            string_method="Stored";
        else
        if (file_info.compression_method==Z_DEFLATED)
        {
            uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
            if (iLevel==0)
              string_method="Defl:N";
            else if (iLevel==1)
              string_method="Defl:X";
            else if ((iLevel==2) || (iLevel==3))
              string_method="Defl:F"; /* 2:fast , 3 : extra fast*/
        }
M
Mark Adler 已提交
281 282 283 284 285
        else
        if (file_info.compression_method==Z_BZIP2ED)
        {
              string_method="BZip2 ";
        }
M
Mark Adler 已提交
286 287 288
        else
            string_method="Unkn. ";

M
Mark Adler 已提交
289 290 291 292
        Display64BitsSize(file_info.uncompressed_size,7);
        printf("  %6s%c",string_method,charCrypt);
        Display64BitsSize(file_info.compressed_size,7);
        printf(" %3lu%%  %2.2lu-%2.2lu-%2.2lu  %2.2lu:%2.2lu  %8.8lx   %s\n",
M
Mark Adler 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
                ratio,
                (uLong)file_info.tmu_date.tm_mon + 1,
                (uLong)file_info.tmu_date.tm_mday,
                (uLong)file_info.tmu_date.tm_year % 100,
                (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
                (uLong)file_info.crc,filename_inzip);
        if ((i+1)<gi.number_entry)
        {
            err = unzGoToNextFile(uf);
            if (err!=UNZ_OK)
            {
                printf("error %d with zipfile in unzGoToNextFile\n",err);
                break;
            }
        }
    }

    return 0;
}


S
shuaiyutao 已提交
314
static int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
M
Mark Adler 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327
    unzFile uf;
    const int* popt_extract_without_path;
    int* popt_overwrite;
    const char* password;
{
    char filename_inzip[256];
    char* filename_withoutpath;
    char* p;
    int err=UNZ_OK;
    FILE *fout=NULL;
    void* buf;
    uInt size_buf;

M
Mark Adler 已提交
328 329
    unz_file_info64 file_info;
    err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
M
Mark Adler 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380

    if (err!=UNZ_OK)
    {
        printf("error %d with zipfile in unzGetCurrentFileInfo\n",err);
        return err;
    }

    size_buf = WRITEBUFFERSIZE;
    buf = (void*)malloc(size_buf);
    if (buf==NULL)
    {
        printf("Error allocating memory\n");
        return UNZ_INTERNALERROR;
    }

    p = filename_withoutpath = filename_inzip;
    while ((*p) != '\0')
    {
        if (((*p)=='/') || ((*p)=='\\'))
            filename_withoutpath = p+1;
        p++;
    }

    if ((*filename_withoutpath)=='\0')
    {
        if ((*popt_extract_without_path)==0)
        {
            printf("creating directory: %s\n",filename_inzip);
            mymkdir(filename_inzip);
        }
    }
    else
    {
        const char* write_filename;
        int skip=0;

        if ((*popt_extract_without_path)==0)
            write_filename = filename_inzip;
        else
            write_filename = filename_withoutpath;

        err = unzOpenCurrentFilePassword(uf,password);
        if (err!=UNZ_OK)
        {
            printf("error %d with zipfile in unzOpenCurrentFilePassword\n",err);
        }

        if (((*popt_overwrite)==0) && (err==UNZ_OK))
        {
            char rep=0;
            FILE* ftestexist;
M
Mark Adler 已提交
381
            ftestexist = FOPEN_FUNC(write_filename,"rb");
M
Mark Adler 已提交
382 383 384 385 386 387 388 389 390 391
            if (ftestexist!=NULL)
            {
                fclose(ftestexist);
                do
                {
                    char answer[128];
                    int ret;

                    printf("The file %s exists. Overwrite ? [y]es, [n]o, [A]ll: ",write_filename);
                    ret = scanf("%1s",answer);
M
Mark Adler 已提交
392
                    if (ret != 1)
M
Mark Adler 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
                    {
                       exit(EXIT_FAILURE);
                    }
                    rep = answer[0] ;
                    if ((rep>='a') && (rep<='z'))
                        rep -= 0x20;
                }
                while ((rep!='Y') && (rep!='N') && (rep!='A'));
            }

            if (rep == 'N')
                skip = 1;

            if (rep == 'A')
                *popt_overwrite=1;
        }

        if ((skip==0) && (err==UNZ_OK))
        {
M
Mark Adler 已提交
412
            fout=FOPEN_FUNC(write_filename,"wb");
M
Mark Adler 已提交
413 414 415 416 417 418 419 420
            /* some zipfile don't contain directory alone before file */
            if ((fout==NULL) && ((*popt_extract_without_path)==0) &&
                                (filename_withoutpath!=(char*)filename_inzip))
            {
                char c=*(filename_withoutpath-1);
                *(filename_withoutpath-1)='\0';
                makedir(write_filename);
                *(filename_withoutpath-1)=c;
M
Mark Adler 已提交
421
                fout=FOPEN_FUNC(write_filename,"wb");
M
Mark Adler 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
            }

            if (fout==NULL)
            {
                printf("error opening %s\n",write_filename);
            }
        }

        if (fout!=NULL)
        {
            printf(" extracting: %s\n",write_filename);

            do
            {
                err = unzReadCurrentFile(uf,buf,size_buf);
                if (err<0)
                {
                    printf("error %d with zipfile in unzReadCurrentFile\n",err);
                    break;
                }
                if (err>0)
S
shuaiyutao 已提交
443
                    if (fwrite(buf,(unsigned)err,1,fout)!=1)
M
Mark Adler 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
                    {
                        printf("error in writing extracted file\n");
                        err=UNZ_ERRNO;
                        break;
                    }
            }
            while (err>0);
            if (fout)
                    fclose(fout);

            if (err==0)
                change_file_date(write_filename,file_info.dosDate,
                                 file_info.tmu_date);
        }

        if (err==UNZ_OK)
        {
            err = unzCloseCurrentFile (uf);
            if (err!=UNZ_OK)
            {
                printf("error %d with zipfile in unzCloseCurrentFile\n",err);
            }
        }
        else
            unzCloseCurrentFile(uf); /* don't lose the error */
    }

    free(buf);
    return err;
}


S
shuaiyutao 已提交
476
static int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
M
Mark Adler 已提交
477 478 479 480 481 482
    unzFile uf;
    int opt_extract_without_path;
    int opt_overwrite;
    const char* password;
{
    uLong i;
M
Mark Adler 已提交
483
    unz_global_info64 gi;
M
Mark Adler 已提交
484 485
    int err;

M
Mark Adler 已提交
486
    err = unzGetGlobalInfo64(uf,&gi);
M
Mark Adler 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
    if (err!=UNZ_OK)
        printf("error %d with zipfile in unzGetGlobalInfo \n",err);

    for (i=0;i<gi.number_entry;i++)
    {
        if (do_extract_currentfile(uf,&opt_extract_without_path,
                                      &opt_overwrite,
                                      password) != UNZ_OK)
            break;

        if ((i+1)<gi.number_entry)
        {
            err = unzGoToNextFile(uf);
            if (err!=UNZ_OK)
            {
                printf("error %d with zipfile in unzGoToNextFile\n",err);
                break;
            }
        }
    }

    return 0;
}

S
shuaiyutao 已提交
511
static int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
M
Mark Adler 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
    unzFile uf;
    const char* filename;
    int opt_extract_without_path;
    int opt_overwrite;
    const char* password;
{
    if (unzLocateFile(uf,filename,CASESENSITIVITY)!=UNZ_OK)
    {
        printf("file %s not found in the zipfile\n",filename);
        return 2;
    }

    if (do_extract_currentfile(uf,&opt_extract_without_path,
                                      &opt_overwrite,
                                      password) == UNZ_OK)
        return 0;
    else
        return 1;
}


int main(argc,argv)
    int argc;
    char *argv[];
{
    const char *zipfilename=NULL;
    const char *filename_to_extract=NULL;
    const char *password=NULL;
    char filename_try[MAXFILENAME+16] = "";
    int i;
M
Mark Adler 已提交
542
    int ret_value=0;
M
Mark Adler 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
    int opt_do_list=0;
    int opt_do_extract=1;
    int opt_do_extract_withoutpath=0;
    int opt_overwrite=0;
    int opt_extractdir=0;
    const char *dirname=NULL;
    unzFile uf=NULL;

    do_banner();
    if (argc==1)
    {
        do_help();
        return 0;
    }
    else
    {
        for (i=1;i<argc;i++)
        {
            if ((*argv[i])=='-')
            {
                const char *p=argv[i]+1;

                while ((*p)!='\0')
                {
                    char c=*(p++);;
                    if ((c=='l') || (c=='L'))
                        opt_do_list = 1;
                    if ((c=='v') || (c=='V'))
                        opt_do_list = 1;
                    if ((c=='x') || (c=='X'))
                        opt_do_extract = 1;
                    if ((c=='e') || (c=='E'))
                        opt_do_extract = opt_do_extract_withoutpath = 1;
                    if ((c=='o') || (c=='O'))
                        opt_overwrite=1;
                    if ((c=='d') || (c=='D'))
                    {
                        opt_extractdir=1;
                        dirname=argv[i+1];
                    }

                    if (((c=='p') || (c=='P')) && (i+1<argc))
                    {
                        password=argv[i+1];
                        i++;
                    }
                }
            }
            else
            {
                if (zipfilename == NULL)
                    zipfilename = argv[i];
                else if ((filename_to_extract==NULL) && (!opt_extractdir))
                        filename_to_extract = argv[i] ;
            }
        }
    }

    if (zipfilename!=NULL)
    {

#        ifdef USEWIN32IOAPI
M
Mark Adler 已提交
605
        zlib_filefunc64_def ffunc;
M
Mark Adler 已提交
606 607 608 609 610 611 612
#        endif

        strncpy(filename_try, zipfilename,MAXFILENAME-1);
        /* strncpy doesnt append the trailing NULL, of the string is too long. */
        filename_try[ MAXFILENAME ] = '\0';

#        ifdef USEWIN32IOAPI
M
Mark Adler 已提交
613 614
        fill_win32_filefunc64A(&ffunc);
        uf = unzOpen2_64(zipfilename,&ffunc);
M
Mark Adler 已提交
615
#        else
M
Mark Adler 已提交
616
        uf = unzOpen64(zipfilename);
M
Mark Adler 已提交
617 618 619 620 621
#        endif
        if (uf==NULL)
        {
            strcat(filename_try,".zip");
#            ifdef USEWIN32IOAPI
M
Mark Adler 已提交
622
            uf = unzOpen2_64(filename_try,&ffunc);
M
Mark Adler 已提交
623
#            else
M
Mark Adler 已提交
624
            uf = unzOpen64(filename_try);
M
Mark Adler 已提交
625 626 627 628 629 630 631 632 633 634 635 636
#            endif
        }
    }

    if (uf==NULL)
    {
        printf("Cannot open %s or %s.zip\n",zipfilename,zipfilename);
        return 1;
    }
    printf("%s opened\n",filename_try);

    if (opt_do_list==1)
M
Mark Adler 已提交
637
        ret_value = do_list(uf);
M
Mark Adler 已提交
638 639
    else if (opt_do_extract==1)
    {
M
Mark Adler 已提交
640
#ifdef _WIN32
M
Mark Adler 已提交
641
        if (opt_extractdir && _chdir(dirname))
M
Mark Adler 已提交
642
#else
M
Mark Adler 已提交
643
        if (opt_extractdir && chdir(dirname))
M
Mark Adler 已提交
644
#endif
M
Mark Adler 已提交
645 646 647 648 649 650
        {
          printf("Error changing into %s, aborting\n", dirname);
          exit(-1);
        }

        if (filename_to_extract == NULL)
M
Mark Adler 已提交
651
            ret_value = do_extract(uf, opt_do_extract_withoutpath, opt_overwrite, password);
M
Mark Adler 已提交
652
        else
M
Mark Adler 已提交
653
            ret_value = do_extract_onefile(uf, filename_to_extract, opt_do_extract_withoutpath, opt_overwrite, password);
M
Mark Adler 已提交
654 655
    }

M
Mark Adler 已提交
656 657 658
    unzClose(uf);

    return ret_value;
M
Mark Adler 已提交
659
}