ZIPDIST.BAT
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. @echo off
  2. rem Zip up an external distribution of CImage
  3. if "%1" == "" goto usage
  4. if "%2" == "" goto usage
  5. echo About to archive an external CImage distribution:
  6. echo   From   %1
  7. echo   To     %2cimage.zip
  8. echo CTRL-C if this is not correct.
  9. inkey /W4 `Press any key to continue...` %%input
  10. erase %2cimage.zip
  11. cd %1
  12. zip -P %3 %4 %5 %6 %7 %8 %2cimage.zip @%1distribcimage.rsp
  13. echo CImage archived.
  14. goto end
  15. :usage
  16. echo CImage distribution.
  17. echo Usage: zipdist source destination
  18. echo e.g. zipogl c:projectscimage c:projectscimagedeliver
  19. :end