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