检查zip存档中是否存在文件

时间:2015-08-24 13:06:25

标签: windows file batch-file

我使用的是Windows 7终极版,我想在命令行上查看zip存档中是否存在文件。
如果程序不包括下载其他内容,我更喜欢。

1 个答案:

答案 0 :(得分:1)

尝试使用zipjs.bat

call zipjs.bat list -source "C:\myZip.zip" -flat yes|find /i "filename" && (
  echo file does  exists in the zip
  color 
)|| (
  echo file does NOT exists in the zip
)