惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
Y
Y Combinator Blog
D
DataBreaches.Net
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
H
Help Net Security
GbyAI
GbyAI
C
Check Point Blog
L
LangChain Blog
小众软件
小众软件
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
G
Google Developers Blog
月光博客
月光博客
V
V2EX
M
MIT News - Artificial intelligence
博客园 - 叶小钗

博客园 - 王祥 @ dot net 驿站

阿里云服务器Node环境配置 国内最快的jquery cdn HTML5 localStorage与document.domain设置问题 在FreeBSD上搭建Mac的文件及time machine备份服务 2012年年终总结:这一年,我玩大了 为前端开发人员制作chrome扩展一枚jsbeautifier chrome中国版更新列表 自己总结的一些wap知识-WAP站点的MIME类型有哪些?如何添加? chrome os Google 可视化 API 很好,很强大! 关于浏览器的可视大小 jquery中ajax方法提交数据时,中文乱码问题解决。 javascripter之配合dot net工程师。 关于虚函数一个很好的解释 DataRow对象数据绑定问题 - 王祥 @ dot net 驿站 修改程序之感悟 自己的个人网站js中国正逐步完善着。 一个能描述erp系统的小故事。 计划学习研究模板引擎。学习stringtemplate先
批处理操作压缩文件
王祥 @ dot net 驿站 · 2010-06-14 · via 博客园 - 王祥 @ dot net 驿站

操作zip文件

首先到7-zip安装目录中复制一份7z.exe文件。

打包某目录下面所有的文件
7z a -tzip test.zip /dir/*

解压文件到指定的目录
7z e -o新目录 test.zip

设定密码
7z a -tzip -p123 test.zip /dir/*

向压缩包中添加文件
7z u test.zip file.txt