• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/

Lines Matching refs:Options

70 ZPOPT Options;
195 for (j = lstrlen(Options.szRootDir); j < lstrlen(str2); j++)
278 Options = *Opts; /* Save off options, and make them available locally */
283 if (Options.szRootDir) lstrcpy(szRootDir, Options.szRootDir);
284 if (Options.szExcludeList) lstrcpy(szExcludeList, Options.szExcludeList);
285 if (Options.szIncludeList) lstrcpy(szIncludeList, Options.szIncludeList);
286 if (Options.szTempDir) lstrcpy(szTempDir, Options.szTempDir);
329 if ((Options.fLevel < '0') || (Options.fLevel > '9'))
331 Options.fLevel = '6';
332 if (!Options.fDeleteEntries)
336 argVee[argCee-1][1] = Options.fLevel;
338 if (Options.fOffsets) /* Update offsets for SFX prefix */
343 if (Options.fDeleteEntries) /* Delete files from zip file -d */
348 if (Options.fNoDirEntries) /* Do not add directory entries -D */
353 if (Options.fFreshen) /* Freshen zip file--overwrite only -f */
358 if (Options.fRepair) /* Fix archive -F or -FF */
360 if (Options.fRepair == 1)
371 if (Options.fGrow) /* Allow appending to a zip file -g */
376 if (Options.fJunkDir) /* Junk directory names -j */
381 if (Options.fEncrypt) /* encrypt -e */
386 if (Options.fJunkSFX) /* Junk sfx prefix */
392 if (Options.fForce) /* Make entries using DOS names (k for Katz) -k */
398 if (Options.fLF_CRLF) /* Translate LF_CRLF -l */
403 if (Options.fCRLF_LF) /* Translate CR/LF to LF -ll */
408 if (Options.fMove) /* Delete files added to or updated in zip file -m */
414 if (Options.fLatestTime) /* Set zip file time to time of latest file in it -o */
420 if (Options.fComment) /* Add archive comment "-z" */
426 if (Options.fQuiet) /* quiet operation -q */
431 if (Options.fRecurse == 1) /* recurse into subdirectories -r */
436 else if (Options.fRecurse == 2) /* recurse into subdirectories -R */
441 if (Options.fSystem) /* include system and hidden files -S */
446 if (Options.fExcludeDate) /* Exclude files newer than specified date -tt */
448 if ((Options.Date != NULL) && (Options.Date[0] != '\0'))
452 if (AllocMemory(argCee, Options.Date, "Date", FALSE) != ZE_OK)
457 if (Options.fIncludeDate) /* include files newer than specified date -t */
459 if ((Options.Date != NULL) && (Options.Date[0] != '\0'))
463 if (AllocMemory(argCee, Options.Date, "Date", FALSE) != ZE_OK)
468 if (Options.fUpdate) /* Update zip file--overwrite only if newer -u */
473 if (Options.fVerbose) /* Mention oddities in zip file structure -v */
478 if (Options.fVolume) /* Include volume label -$ */
483 if (Options.szSplitSize != NULL) /* Turn on archive splitting */
487 if (AllocMemory(argCee, Options.szSplitSize, "Split size", FALSE) != ZE_OK)
496 if (Options.fPrivilege) /* Use privileges -! */
502 if (Options.fExtra) /* Exclude extra attributes -X */
507 if (Options.IncludeList != NULL) /* Include file list -i */
512 if (Options.IncludeListCount > 0)
513 while ((Options.IncludeList[k] != NULL) && (Options.IncludeListCount != k+1))
521 if (AllocMemory(argCee, Options.IncludeList[k], "Include file list array", TRUE) != ZE_OK)
528 while (Options.IncludeList[k] != NULL)
537 if (AllocMemory(argCee, Options.IncludeList[k], "Include file list array", TRUE) != ZE_OK)
545 if (Options.ExcludeList != NULL) /* Exclude file list -x */
550 if (Options.ExcludeListCount > 0)
551 while ((Options.ExcludeList[k] != NULL) && (Options.ExcludeListCount != k+1))
559 if (AllocMemory(argCee, Options.ExcludeList[k], "Exclude file list array", TRUE) != ZE_OK)
564 while (Options.ExcludeList[k] != NULL)
573 if (AllocMemory(argCee, Options.ExcludeList[k], "Exclude file list array", TRUE) != ZE_OK)
605 && Options.fTemp) /* Use temporary directory -b */